Changeset 1290

Show
Ignore:
Timestamp:
12/01/06 01:09:11
Author:
pvanhoof
Message:

Fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libtinymail-gnome-desktop/tny-gnome-account-store.c

    r1287 r1290  
    437437                        /* Because we only check for the n first bytes, the pops, imaps and smtps also work */ 
    438438                        if (!g_ascii_strncasecmp (proto, "pop", 3) || 
    439                                 !g_ascii_strncasecmp (proto, "imap", 4)|| 
    440                                 !g_ascii_strncasecmp (proto, "smtp", 4)) 
     439                                !g_ascii_strncasecmp (proto, "imap", 4)) 
    441440                        { 
    442441                                gchar *user, *hostname; 
  • trunk/libtinymail-gpe/tny-gpe-account-store.c

    r1107 r1290  
    311311                        /* Because we only check for the n first bytes, the pops, imaps and smtps also work */ 
    312312                        if (!g_ascii_strncasecmp (proto, "pop", 3) || 
    313                                 !g_ascii_strncasecmp (proto, "imap", 4)|| 
    314                                 !g_ascii_strncasecmp (proto, "smtp", 4)) 
     313                                !g_ascii_strncasecmp (proto, "imap", 4)) 
    315314                        { 
    316315                                gchar *user, *hostname; 
  • trunk/libtinymail-maemo/tny-maemo-account-store.c

    r1107 r1290  
    312312                        /* Because we only check for the n first bytes, the pops, imaps and smtps also work */ 
    313313                        if (!g_ascii_strncasecmp (proto, "pop", 3) || 
    314                                 !g_ascii_strncasecmp (proto, "imap", 4)|| 
    315                                 !g_ascii_strncasecmp (proto, "smtp", 4)) 
     314                                !g_ascii_strncasecmp (proto, "imap", 4)) 
    316315                        { 
    317316                                gchar *user, *hostname; 
  • trunk/libtinymail-olpc/tny-olpc-account-store.c

    r1107 r1290  
    256256                        /* Because we only check for the n first bytes, the pops, imaps and smtps also work */ 
    257257                        if (!g_ascii_strncasecmp (proto, "pop", 3) || 
    258                                 !g_ascii_strncasecmp (proto, "imap", 4)|| 
    259                                 !g_ascii_strncasecmp (proto, "smtp", 4)) 
     258                                !g_ascii_strncasecmp (proto, "imap", 4)) 
    260259                        { 
    261260                                gchar *user, *hostname; 
  • trunk/libtinymail/tny-account.c

    r1225 r1290  
    214214 * @url_string: the url string (ex. mbox://path) 
    215215 *   
    216  * Set the url string of @self. You don't need to use this for imap and pop 
     216 * Set the url string of @self (RFC 1808). You don't need to use this for imap and pop 
    217217 * where you can use the simplified API (set_proto, set_hostname, etc). This 
    218218 * property is typically set in the implementation of a #TnyAccountStore. 
    219219 *  
     220 * For example the url_string for an SMTP account that uses SSL with authentication 
     221 * type PLAIN: smtp://user;auth=PLAIN@smtp.server.com/;use_ssl=always 
     222 *  
     223 * Don't forget to set the name, type and proto setting of the account too. 
    220224 **/ 
    221225void