summaryrefslogtreecommitdiff
path: root/python/mailutils/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mailutils/__init__.py')
-rw-r--r--python/mailutils/__init__.py60
1 files changed, 60 insertions, 0 deletions
diff --git a/python/mailutils/__init__.py b/python/mailutils/__init__.py
new file mode 100644
index 000000000..7a8201453
--- /dev/null
+++ b/python/mailutils/__init__.py
@@ -0,0 +1,60 @@
+# GNU Mailutils -- a suite of utilities for electronic mail
+# Copyright (C) 2009-2024 Free Software Foundation, Inc.
+#
+# GNU Mailutils is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# GNU Mailutils is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>.
+
+"""
+A Python interface to Mailutils framework.
+
+GNU Mailutils is a rich and powerful protocol-independent mail
+framework. It contains a series of useful mail libraries, clients,
+and servers. These are the primary mail utilities for the GNU system.
+The central library is capable of handling electronic mail in various
+mailbox formats and protocols, both local and remote. Specifically,
+this project contains a POP3 server, an IMAP4 server, and a Sieve mail
+filter. It also provides a POSIX `mailx' client, and a collection of
+other handy tools.
+
+This software is part of the GNU Project and belongs to the Free
+Software Foundation. All libraries are licensed using the GNU LGPL.
+The documentation is licensed under the GNU FDL, and everything else
+is licensed using the GNU GPL.
+
+See http://www.gnu.org/software/mailutils/ for more information about
+GNU Mailutils.
+"""
+
+__all__ = (
+ "error",
+ "address",
+ "attribute",
+ "auth",
+ "body",
+ "envelope",
+ "filter",
+ "folder",
+ "header",
+ "mailer",
+ "mailbox",
+ "mailcap",
+ "message",
+ "mime",
+ "nls",
+ "registrar",
+ "secret",
+ "sieve",
+ "stream",
+ "url",
+ "util",
+)

Return to:

Send suggestions and report system problems to the System administrator.