Patch taos fixes #7413 thanks! Updates the provider info readme and fix yahoo settings.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41145 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler
2011-03-31 04:07:35 +00:00
parent 8c28e64bcd
commit 5a44e07cca
2 changed files with 26 additions and 11 deletions
+23 -8
View File
@@ -2,16 +2,18 @@ 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 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: the new provider name. Here an example rdef file:
resource(1, "Provider") "gmx.de"; resource(1, "POP Server") "pop.gmx.net";
resource(2, "POP Server") "pop.gmx.net"; resource(2, "IMAP Server") "imap.gmx.net";
resource(3, "IMAP Server") "imap.gmx.net"; resource(3, "SMTP Server") "mail.gmx.de";
resource(4, "SMTP Server") "mail.gmx.de"; resource(4, "POP Authentication") 0;
resource(5, "POP Authentification") 0; resource(5, "SMTP Authentication") 1;
resource(6, "SMTP Authentification") 0; resource(6, "POP SSL") 0;
resource(7, "Username Pattern") 0; resource(7, "IMAP SSL") 0;
resource(8, "SMTP SSL") 0;
resource(9, "Username Pattern") 0;
you can pass the following options to the last three items: you can pass the following options to the last six items:
"POP Authentification": "POP Authentification":
0 plain text 0 plain text
@@ -21,6 +23,19 @@ you can pass the following options to the last three items:
0 none 0 none
1 ESMTP 1 ESMTP
2 POP3 before SMTP 2 POP3 before SMTP
"POP SSL":
0 No encryption
1 SSL
"IMAP SSL":
0 No encryption
1 SSL
"SMTP SSL":
0 Unencrypted
1 SSL
2 STARTTLS
"Username Pattern": "Username Pattern":
0 username is the email address (default) 0 username is the email address (default)
@@ -3,7 +3,7 @@ resource(2, "IMAP Server") "";
resource(3, "SMTP Server") "smtp.mail.yahoo.com"; resource(3, "SMTP Server") "smtp.mail.yahoo.com";
resource(4, "POP Authentication") 0; resource(4, "POP Authentication") 0;
resource(5, "SMTP Authentication") 1; resource(5, "SMTP Authentication") 1;
resource(6, "POP SSL") 0; resource(6, "POP SSL") 1;
resource(7, "IMAP SSL") 0; resource(7, "IMAP SSL") 1;
resource(8, "SMTP SSL") 0; resource(8, "SMTP SSL") 1;
resource(9, "Username Pattern") 1; resource(9, "Username Pattern") 1;