Changeset 1290
- Timestamp:
- 12/01/06 01:09:11
- Files:
-
- trunk/libtinymail-gnome-desktop/tny-gnome-account-store.c (modified) (1 diff)
- trunk/libtinymail-gpe/tny-gpe-account-store.c (modified) (1 diff)
- trunk/libtinymail-maemo/tny-maemo-account-store.c (modified) (1 diff)
- trunk/libtinymail-olpc/tny-olpc-account-store.c (modified) (1 diff)
- trunk/libtinymail/tny-account.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-gnome-desktop/tny-gnome-account-store.c
r1287 r1290 437 437 /* Because we only check for the n first bytes, the pops, imaps and smtps also work */ 438 438 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)) 441 440 { 442 441 gchar *user, *hostname; trunk/libtinymail-gpe/tny-gpe-account-store.c
r1107 r1290 311 311 /* Because we only check for the n first bytes, the pops, imaps and smtps also work */ 312 312 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)) 315 314 { 316 315 gchar *user, *hostname; trunk/libtinymail-maemo/tny-maemo-account-store.c
r1107 r1290 312 312 /* Because we only check for the n first bytes, the pops, imaps and smtps also work */ 313 313 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)) 316 315 { 317 316 gchar *user, *hostname; trunk/libtinymail-olpc/tny-olpc-account-store.c
r1107 r1290 256 256 /* Because we only check for the n first bytes, the pops, imaps and smtps also work */ 257 257 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)) 260 259 { 261 260 gchar *user, *hostname; trunk/libtinymail/tny-account.c
r1225 r1290 214 214 * @url_string: the url string (ex. mbox://path) 215 215 * 216 * Set the url string of @self . You don't need to use this for imap and pop216 * Set the url string of @self (RFC 1808). You don't need to use this for imap and pop 217 217 * where you can use the simplified API (set_proto, set_hostname, etc). This 218 218 * property is typically set in the implementation of a #TnyAccountStore. 219 219 * 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. 220 224 **/ 221 225 void
