aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/pop3
Commit message (Expand)AuthorAgeFilesLines
* Free the LIST pop3 command.Jeffrey Stedfast2002-04-201-2/+4
* make service_cache be an array of CAMEL_NUM_PROVIDER_TYPES elements so youDan Winship2002-04-041-1/+0
* Temporarily disable indexing.Not Zed2002-04-021-3/+13
* Use -avoid-version instead of -version-info 0:0:0, and specify -module.Dan Winship2002-04-021-2/+1
* No longer takes a stls_supported argument since we no longer need it withJeffrey Stedfast2002-03-191-16/+9
* reverted my USER/PASS quoting fixJeffrey Stedfast2002-03-141-2/+2
* Quote the USER and PASS arguments since some people have spaces in theirJeffrey Stedfast2002-03-141-2/+2
* oops, musta backspaced over a brace?Jeffrey Stedfast2002-03-121-1/+1
* These fixes should fix bug #21737.Jeffrey Stedfast2002-03-121-11/+12
* Rename the OpenSSL implementation of things to match the NSSDan Winship2002-03-111-28/+11
* Don't call camel_remote_store_get_authtypes since we no longer subclassJeffrey Stedfast2002-03-095-49/+271
* Duh, when we grab the apop stamp it needs to include the <> as well, INot Zed2002-02-092-4/+4
* Use "pop" instead of "pop3" so current configurations continue to work.Jeffrey Stedfast2002-01-311-1/+1
* Changed name from "NT Login" to simply "Login".Not Zed2002-01-3010-666/+1608
* only use major and minor version in the camel providerdir, not micro and nanoDan Winship2001-12-181-4/+2
* Don't use regex matching. Fixes bug #16227.Jeffrey Stedfast2001-12-011-24/+21
* Fixing the license text.Ettore Perazzoli2001-10-285-5/+0
* Update the licensing information to require version 2 of the GPLEttore Perazzoli2001-10-275-10/+10
* Added CAMEL_CFLAGS so we get the right iconv stuff, patch from Yanko82001-10-191-0/+1
* replace the ever-growing list of gbooleans with a single guint32 forDan Winship2001-10-091-14/+1
* if STAT returns 0, don't bother sending UIDL. Speeds things up slightlyDan Winship2001-10-011-0/+7
* Init the nntp url hash and url_equal functions.Jeffrey Stedfast2001-09-291-1/+3
* Fix this to always set an exception if it returns POP3_FAIL, asDan Winship2001-09-072-6/+8
* Set an exception on POP3_FAIL as well.Jeffrey Stedfast2001-09-071-3/+5
* #ifdef out the "delete after N days" option in pop3_conf_entries, since itDan Winship2001-09-071-0/+2
* Add progress reporting to deleting messages. Dont change the calculationNot Zed2001-08-291-2/+9
* Changed the description/names of some of the local providers to try andJeffrey Stedfast2001-08-281-9/+8
* oops, don't need that extra statementJeffrey Stedfast2001-08-231-3/+0
* Oops. Fixed a mis-use of GPtrArray. If we set_size, then usingJeffrey Stedfast2001-08-231-2/+4
* Turn on --batch and reenable gpg keyserver lookups. (pgp_decrypt): DisableJeffrey Stedfast2001-08-221-3/+3
* Make sure the generated UID is non-NULL before appending it to the arrayJeffrey Stedfast2001-08-201-5/+2
* Set the total bytes expected to 0 if the response is empty too.Jeffrey Stedfast2001-08-111-3/+4
* Set the total bytes expected to 0 if the response is empty too.Jeffrey Stedfast2001-08-112-8/+8
* Modify to take a headers_only argument which will then only fetch messageJeffrey Stedfast2001-08-071-9/+7
* New internal function to get a message stream by message sequence id (soJeffrey Stedfast2001-08-071-68/+119
* Don't strstr for noselect=yes, that's just plain broken.Jeffrey Stedfast2001-08-071-14/+13
* Update the copyrights, replacing Helix Code with Ximian andEttore Perazzoli2001-06-235-10/+10
* Rescue the KPOP code from bit rot.Dan Winship2001-05-021-23/+16
* Redo this a lot so that instead of having a class full of callbacks, weDan Winship2001-04-281-6/+4
* Remove UNICODE_CFLAGS (and some other stuff that's redundant withDan Winship2001-04-271-1/+1
* Free base_url and storage_path.Dan Winship2001-04-192-5/+29
* Check if gethostbyname_r take five paramsJP Rosevear2001-04-121-0/+1
* merge from evolution-0-10-branch to evolution-0-10-merge-0Not Zed2001-04-051-1/+1
* Remove the "quick_login" member, which is unnecessary.Dan Winship2001-04-031-5/+2
* Updated the authtypes here too.Jeffrey Stedfast2001-04-021-2/+5
* Move things around here to make this all work right again (so you don'tDan Winship2001-03-311-47/+28
* Not quite finished but checking in for some local frobbing.Not Zed2001-03-301-0/+3
* Big header cleanups and nntp compile fixKjartan Maraas2001-03-302-2/+7
* If we aren't going to even check the resp/free buffer that gets returnedJeffrey Stedfast2001-03-281-4/+3
* Add an "extra_conf" field to CamelProvider with structures and defines andDan Winship2001-03-273-37/+16
* add a "GList *authtypes", so you can get the list of authtypes used by aDan Winship2001-03-222-92/+83
* Set the errbuf to NULL after freeing it? I don't think this should fix bugJeffrey Stedfast2001-03-191-0/+1
* Added #include <config.h>Kjartan Maraas2001-03-171-0/+4
* defined "ssmtp"Jeffrey Stedfast2001-03-151-4/+4
* also change the protocol name in the providersJeffrey Stedfast2001-03-151-1/+1
* Check for "simap" instead of "imaps".Jeffrey Stedfast2001-03-152-3/+3
* Check to see if we are using "pops" and then set the appropriate SSLJeffrey Stedfast2001-03-153-3/+44
* Implement. (get_trash): Implement. (camel_pop3_store_class_init): OverrideJeffrey Stedfast2001-03-081-0/+19
* Rewrite a bunch. Replace the existing folder cache stuff with much simplerDan Winship2001-02-101-24/+2
* Changed to push the operation into a status stack.Not Zed2001-02-083-10/+39
* Updated.Jeffrey Stedfast2001-02-061-42/+46
* Added profiling temp files.Not Zed2001-01-221-0/+4
* Kill off a long-hated Camel kludge: "empty" URLs andDan Winship2001-01-101-20/+4
* Fix the APOP check to not crash on servers that don't return anyDan Winship2000-12-281-7/+9
* Lock the command channel while searching. (imap_body_contains): IfNot Zed2000-12-241-1/+2
* change a bunch of IS_CAMEL_* macros to CAMEL_IS_*Dan Winship2000-12-142-2/+2
* Don't g_return_if_fail if the service is already disconnected. JustDan Winship2000-12-021-2/+4
* Don't try to free things if they haven't been set yet.Dan Winship2000-11-291-2/+4
* Unbreak this.Dan Winship2000-11-041-2/+2
* Add an "url_flags" field to CamelProvider. Move the CAMEL_SERVICE_URL_*Dan Winship2000-11-042-4/+2
* Add a new argument, clean, that says whether or not to try to disconnectDan Winship2000-11-011-6/+7
* Remove md5-utils.h include since it's not part of Camel any more.Dan Winship2000-10-301-1/+3
* build md5-utils72000-10-281-1/+4
* lots of i18n fixesDan Winship2000-10-243-57/+38
* No, we must not encode the headers here. These interfaces ARE rawNot Zed2000-10-181-2/+2
* Remove default_ports.Dan Winship2000-10-032-2/+4
* Remove camel_folder_{get,free}_subfolder_info, as we want to be able toDan Winship2000-10-031-2/+0
* Removed (camel_folder_init, camel_folder_construct): New object initDan Winship2000-09-201-8/+14
* Make KPOP work again.Dan Winship2000-09-081-1/+2
* Cleanup of lots of exception handling ; bugfixesPeter Williams2000-09-063-234/+142
* CamelRemoteStore: a new generic store for stores that connect to servers. Pre...Peter Williams2000-08-302-10/+43
* Add support for specifying on which port to connect to a server; fix a potent...Peter Williams2000-08-261-0/+1
* Fixed a small warning.Christopher James Lahey2000-08-231-3/+3
* Automatically connect services when given a valid URL (should hopefully disco...Peter Williams2000-08-231-20/+41
* New function to do one round of attempted authentication. (pop3_connect):Dan Winship2000-08-131-105/+101
* Merge with camel-async.Peter Williams2000-08-114-62/+40
* New code to keep an on-disk cache of what UIDs have been seen in a folder.Dan Winship2000-08-091-1/+1
* Indexes into the flags array are message_number minus 1, not justDan Winship2000-08-051-2/+2
* add a debugging macro for doing protocol tracing.Dan Winship2000-08-041-2/+24
* Fix Makefile.am booboo.Peter Williams2000-07-281-2/+0
* Remove exceptions from a number of methods that work on what ought to beDan Winship2000-07-252-96/+110
* Useful default implementations for free_{uids,subfolder_names,summary}.Dan Winship2000-07-131-9/+1
* Fix a bug in error-setting code. (pop3_connect): Don't re-prompt forDan Winship2000-07-031-22/+38
* New method, to return an end-user-friendly name corresponding to aDan Winship2000-07-021-0/+15
* fix the CAPA-parsing code to not get into an infinite loop.Dan Winship2000-07-021-2/+4
* Renamed _by_uid methods. Since we no longer have get-by-number methods, noJeffrey Stedfast2000-07-011-24/+25
* Changed to keep prompting user for a valid password until it eitherJeffrey Stedfast2000-06-292-75/+98
* UpdatedJeffrey Stedfast2000-06-231-1/+6
* Fix dumb bug.Dan Winship2000-06-221-1/+1
* flush the filter stream before unreffing it, so it willDan Winship2000-06-211-13/+15
* Kill. Folders are now always open, and handle "closing" sorts ofDan Winship2000-06-163-53/+31
* Check server for various interesting extensions.Dan Winship2000-06-164-38/+190
* Took out the filter code ( we already filter inJeffrey Stedfast2000-06-141-12/+2
* Updated: a separator is now a char* rather than a single char because IMAPJeffrey Stedfast2000-06-141-1/+1
* pop provider now uses the crlf filterJeffrey Stedfast2000-06-131-3/+15
* don't pass a second (incorrect) -rpath in addition to the (correct) oneDan Winship2000-06-131-1/+1
* Add another argument, "mode", which can be CAMEL_AUTHENTICATOR_ASK orDan Winship2000-06-101-10/+16
* Remove exists, create, delete. A CamelFolder now always references anDan Winship2000-06-072-31/+3
* Fun with purify.Dan Winship2000-06-022-0/+4
* diff -r1.206 ChangeLogMichael Zucci2000-05-301-1/+0
* Add a domain field to CamelProvider, to say what kind of data it provides.Dan Winship2000-05-291-0/+2
* (connect_to_server): Remove port number from error message sinceDan Winship2000-05-291-4/+2
* Split apart password and APOP auth, since some servers seem to do both,Dan Winship2000-05-292-123/+148
* > searchpart = strchr(namepart, '?');NotZed2000-05-201-12/+10
* remove message_number_capability and require uid capatibility.Dan Winship2000-05-192-35/+52
* Use CamelException to signal failure. (camel_stream_write_strings):Dan Winship2000-05-093-13/+29
* Make camel not leak like a sieve.Dan Winship2000-05-082-10/+8
* A machine which serves neither POP nor KPOP is not a POP server.Dan Winship2000-05-071-0/+7
* Make this compile again in the !KRB4 caseDan Winship2000-05-051-1/+1
* Don't fall back to plaintext passwords if APOP fails, since it should alsoDan Winship2000-05-051-18/+14
* New function to replace camel_provider_scan. Returns a list of either (a)Dan Winship2000-05-042-10/+127
* s/strcasecmp/g_strcasecamp/ everywhere except intl/, per michael'sJacob Leach2000-05-031-1/+1
* Set G_LOG_DOMAIN in following files.Matthew Loper2000-05-031-1/+2
* Tweak the definition of CamelProvider. Among other things, a provider mayDan Winship2000-04-303-19/+14
* Made Evolution OAF-compatible.Ettore Perazzoli2000-04-281-2/+7
* Big cleanup of camel-stream-*, got rid of 3 classes, improved the interfaces,NotZed2000-04-261-2/+1
* No longer call data_wrapper_repository_init.NotZed2000-04-241-2/+2
* kill camel-logDan Winship2000-04-191-1/+0
* Remove the "session" field from CamelMimeMessage. Nothing uses it, aboutDan Winship2000-04-181-1/+1
* fix various bugs in APOP code (still untested) and some of the errorDan Winship2000-04-111-22/+30
* Clarify what provider.protocol, provider.name, and provider.descriptionDan Winship2000-04-111-3/+8
* (pop3_connect): Remember the password after asking for it theDan Winship2000-04-081-17/+12
* Clarify error messages. (finalize): fix a bug in camel_exception usageDan Winship2000-04-081-11/+22
* Reorganize the folder-fetching methods and implement a folder cache soDan Winship2000-04-071-6/+25
* the URL RFC says the port must be numeric, so we don't want to doDan Winship2000-04-061-6/+3
* Add a htons in the default_number case, and document the fact that theDan Winship2000-03-311-7/+2
* Add htons (port), and only copy 4 bytes for the IP address to prevent aMiguel de Icaza2000-03-301-2/+7
* convenience functions to canonicalize the host and port values of aDan Winship2000-03-291-21/+10
* add delete_message_by_{number,uid}.Dan Winship2000-03-283-7/+204
* keep separate input and output streams so the output doesn't end up beingDan Winship2000-03-283-17/+63
* new routine to free the data allocated by camel_service_query_auth_types.Dan Winship2000-03-281-1/+8
* New function to query a service for the authentication protocols itDan Winship2000-03-231-0/+20
* fix compile errors. duh.Dan Winship2000-03-233-14/+18
* fill this in partially make camel_pop3_command return the text afterDan Winship2000-03-236-25/+249
* some initial bits of the POP3 provider, to make Matt happy. Incomplete,Dan Winship2000-03-224-0/+460