From 8ce14887cb7d3b862ca8a1c0e9555db1476c3afd Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Mon, 6 Apr 2009 18:14:36 +0000 Subject: [PATCH] Description of the provider database / attribute format. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29970 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/mail/ProviderInfo/ReadMe | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/preferences/mail/ProviderInfo/ReadMe diff --git a/src/preferences/mail/ProviderInfo/ReadMe b/src/preferences/mail/ProviderInfo/ReadMe new file mode 100644 index 0000000000..5631ec642d --- /dev/null +++ b/src/preferences/mail/ProviderInfo/ReadMe @@ -0,0 +1,28 @@ +The provider database is simply a collection of files with attributes. To add +new provider to the image rdef files are used. In the jam file you have to add +the new provider name. Here an example rdef file: + +resource(1, "Provider") "gmx.de"; +resource(2, "POP Server") "pop.gmx.net"; +resource(3, "IMAP Server") "imap.gmx.net"; +resource(4, "SMTP Server") "mail.gmx.de"; +resource(5, "POP Authentification") 0; +resource(6, "SMTP Authentification") 0; +resource(7, "Username Pattern") 0; + + +you can pass the following options to the last three items: + +"POP Authentification": + 0 plain text + 1 APOP + +"SMTP Authentification": + 0 none + 1 ESMTP + 2 POP3 before SMTP + +"Username Pattern": + 0 username is the email address (default) + 1 username is the local-part of the email address local-part@domain.net + 2 no username is proposed