diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-08-26 05:09:53 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-08-26 05:09:53 +0800 |
commit | dbce630738f44e6687db9b2ca8dc4b5aae37be3c (patch) | |
tree | 0e2df615971887f57b5f7452d6b3e5c222c476d9 /camel/providers | |
parent | 10e6501b5dca0bd5375d5d4f4ece5cdb1bbee9d4 (diff) | |
download | gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.tar gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.tar.gz gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.tar.bz2 gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.tar.lz gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.tar.xz gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.tar.zst gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.zip |
Add support for specifying on which port to connect to a server; fix a potential infinite loop in unicode.
svn path=/trunk/; revision=5041
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-provider.c | 1 | ||||
-rw-r--r-- | camel/providers/mbox/camel-mbox-provider.c | 1 | ||||
-rw-r--r-- | camel/providers/mh/camel-mh-provider.c | 1 | ||||
-rw-r--r-- | camel/providers/nntp/camel-nntp-provider.c | 2 | ||||
-rw-r--r-- | camel/providers/pop3/camel-pop3-provider.c | 1 | ||||
-rw-r--r-- | camel/providers/sendmail/camel-sendmail-provider.c | 1 | ||||
-rw-r--r-- | camel/providers/smtp/camel-smtp-provider.c | 1 | ||||
-rw-r--r-- | camel/providers/vee/camel-vee-provider.c | 1 |
8 files changed, 9 insertions, 0 deletions
diff --git a/camel/providers/imap/camel-imap-provider.c b/camel/providers/imap/camel-imap-provider.c index 21452d5cee..a0a6279340 100644 --- a/camel/providers/imap/camel-imap-provider.c +++ b/camel/providers/imap/camel-imap-provider.c @@ -45,6 +45,7 @@ static CamelProvider imap_provider = { CAMEL_PROVIDER_IS_REMOTE | CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE, { 0, 0 }, + { 143, 0 }, NULL }; diff --git a/camel/providers/mbox/camel-mbox-provider.c b/camel/providers/mbox/camel-mbox-provider.c index d4048e1be3..0a73f13ab4 100644 --- a/camel/providers/mbox/camel-mbox-provider.c +++ b/camel/providers/mbox/camel-mbox-provider.c @@ -41,6 +41,7 @@ static CamelProvider mbox_provider = { CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE, { 0, 0 }, + { 0, 0 }, NULL }; diff --git a/camel/providers/mh/camel-mh-provider.c b/camel/providers/mh/camel-mh-provider.c index 58e97eed30..e7315ce849 100644 --- a/camel/providers/mh/camel-mh-provider.c +++ b/camel/providers/mh/camel-mh-provider.c @@ -40,6 +40,7 @@ static CamelProvider mh_provider = { CAMEL_PROVIDER_IS_STORAGE, {0, 0}, + {0, 0}, NULL }; diff --git a/camel/providers/nntp/camel-nntp-provider.c b/camel/providers/nntp/camel-nntp-provider.c index 214fd4b0fa..6cd7d96978 100644 --- a/camel/providers/nntp/camel-nntp-provider.c +++ b/camel/providers/nntp/camel-nntp-provider.c @@ -39,6 +39,7 @@ static CamelProvider news_provider = { CAMEL_PROVIDER_IS_REMOTE | CAMEL_PROVIDER_IS_STORAGE, { 0, 0 }, + { 119, 0 }, NULL }; @@ -55,6 +56,7 @@ static CamelProvider nntp_provider = { CAMEL_PROVIDER_IS_REMOTE, { 0, 0 }, + { 119, 0 }, NULL }; diff --git a/camel/providers/pop3/camel-pop3-provider.c b/camel/providers/pop3/camel-pop3-provider.c index 52399c99ec..3a82f65232 100644 --- a/camel/providers/pop3/camel-pop3-provider.c +++ b/camel/providers/pop3/camel-pop3-provider.c @@ -42,6 +42,7 @@ static CamelProvider pop3_provider = { CAMEL_PROVIDER_IS_REMOTE | CAMEL_PROVIDER_IS_SOURCE, { 0, 0 }, + { 110, 0 }, NULL }; diff --git a/camel/providers/sendmail/camel-sendmail-provider.c b/camel/providers/sendmail/camel-sendmail-provider.c index 3b0b35dd72..8da50cf426 100644 --- a/camel/providers/sendmail/camel-sendmail-provider.c +++ b/camel/providers/sendmail/camel-sendmail-provider.c @@ -41,6 +41,7 @@ static CamelProvider sendmail_provider = { 0, { 0, 0 }, + { 0, 0 }, NULL }; diff --git a/camel/providers/smtp/camel-smtp-provider.c b/camel/providers/smtp/camel-smtp-provider.c index 1d18e445cc..ea5aec70cc 100644 --- a/camel/providers/smtp/camel-smtp-provider.c +++ b/camel/providers/smtp/camel-smtp-provider.c @@ -40,6 +40,7 @@ static CamelProvider smtp_provider = { 0, { 0, 0 }, + { 0, 25 }, NULL }; diff --git a/camel/providers/vee/camel-vee-provider.c b/camel/providers/vee/camel-vee-provider.c index e36e7fcff1..cbec03d58d 100644 --- a/camel/providers/vee/camel-vee-provider.c +++ b/camel/providers/vee/camel-vee-provider.c @@ -36,6 +36,7 @@ static CamelProvider vee_provider = { 0, { 0, 0 }, + { 0, 0 }, NULL }; |