[haiku-commits] r41145 - haiku/trunk/src/preferences/mail/ProviderInfo

  • From: clemens.zeidler@xxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 31 Mar 2011 06:07:35 +0200 (CEST)

Author: czeidler
Date: 2011-03-31 06:07:35 +0200 (Thu, 31 Mar 2011)
New Revision: 41145
Changeset: https://dev.haiku-os.org/changeset/41145
Ticket: https://dev.haiku-os.org/ticket/7413

Modified:
   haiku/trunk/src/preferences/mail/ProviderInfo/ReadMe
   haiku/trunk/src/preferences/mail/ProviderInfo/yahoo.com.rdef
Log:
Patch taos fixes #7413 thanks! Updates the provider info readme and fix yahoo 
settings.



Modified: haiku/trunk/src/preferences/mail/ProviderInfo/ReadMe
===================================================================
--- haiku/trunk/src/preferences/mail/ProviderInfo/ReadMe        2011-03-30 
21:30:28 UTC (rev 41144)
+++ haiku/trunk/src/preferences/mail/ProviderInfo/ReadMe        2011-03-31 
04:07:35 UTC (rev 41145)
@@ -2,16 +2,18 @@
 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;
+resource(1, "POP Server") "pop.gmx.net";
+resource(2, "IMAP Server") "imap.gmx.net";
+resource(3, "SMTP Server") "mail.gmx.de";
+resource(4, "POP Authentication") 0;
+resource(5, "SMTP Authentication") 1;
+resource(6, "POP SSL") 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":
        0       plain text
@@ -21,7 +23,20 @@
        0       none
        1       ESMTP
        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":
        0       username is the email address (default)
        1       username is the local-part of the email address 
local-part@xxxxxxxxxx

Modified: haiku/trunk/src/preferences/mail/ProviderInfo/yahoo.com.rdef
===================================================================
--- haiku/trunk/src/preferences/mail/ProviderInfo/yahoo.com.rdef        
2011-03-30 21:30:28 UTC (rev 41144)
+++ haiku/trunk/src/preferences/mail/ProviderInfo/yahoo.com.rdef        
2011-03-31 04:07:35 UTC (rev 41145)
@@ -3,7 +3,7 @@
 resource(3, "SMTP Server") "smtp.mail.yahoo.com";
 resource(4, "POP Authentication") 0;
 resource(5, "SMTP Authentication") 1;
-resource(6, "POP SSL") 0;
-resource(7, "IMAP SSL") 0;
-resource(8, "SMTP SSL") 0;
+resource(6, "POP SSL") 1;
+resource(7, "IMAP SSL") 1;
+resource(8, "SMTP SSL") 1;
 resource(9, "Username Pattern") 1;


Other related posts:

  • » [haiku-commits] r41145 - haiku/trunk/src/preferences/mail/ProviderInfo - clemens . zeidler