Commit Graph

1208 Commits

Author SHA1 Message Date
Michael Elkins
608386f918 forgot to add code to parse the `Delete' option 2001-10-03 06:32:16 +00:00
Michael Elkins
cb2f6e3ee6 forgot conditional #if HAVE_LIBSSL around setting of .use_imaps in main()
from command line arguments
2001-10-03 06:18:45 +00:00
Michael Elkins
bfffeffff6 update Copyright printed by --help
add compile time option list to --help output
2001-10-03 06:15:01 +00:00
Michael Elkins
e015398ff2 added `Delete' configuration option to force -d option
sync_mailbox() didn't consider MaxSize == 0 to mean "unlimited".

load_config() needs to print a newline in its error messages since
next_arg() kills the newline of the line that was read out of the config
file.
2001-10-03 05:42:22 +00:00
Michael Elkins
1efcad03f8 update TODO list with action items 2001-10-03 00:03:14 +00:00
Michael Elkins
6f647ae37b fixed maildir message filenames to comply with the maildir(5) specification.
fixed write_strip() and imap_fetch_message() to check the return code of
write() and fsync() to comply with maildir(5) spec.
2001-10-03 00:01:18 +00:00
Michael Elkins
4b102ee6ec the `Expunge' config directive didn't work since only the -e command line
argument was consulted.
2001-10-02 23:43:09 +00:00
Michael Elkins
e2f1cd779b we should issue a CAPABILITY even if we aren't going to use ssl/tls so that
cram-md5 auth still works.
2001-10-02 22:46:47 +00:00
Michael Elkins
891fab1a7d find_box() should attempt to expand all filenames if none of the other
methods found a match.
2001-07-18 18:56:11 +00:00
Michael Elkins
0f7823a4bf fixed to not expand filenames until they are used inside of maildir_open(),
so that aliases are not required for simple filenames.
[re: http://bugs.debian.org/102255]
2001-07-18 18:49:55 +00:00
Michael Elkins
5eaa4e5512 --host option didn't check for imaps: prefix 2001-06-22 23:30:41 +00:00
Michael Elkins
ea361ad116 fixed core when specifying multiple mailboxes on the command line 2001-06-21 20:45:50 +00:00
Michael Elkins
8af21c5604 handle untagged responses in imap_fetch_message() so that it doesn't bomb
out if new mail arrives while in the process of downloading

noted in BUGS section of man page that if new mail arrives after the initial
message list has been retrieved from the IMAP server, that new mail will not
be fetched until the next invocation of isync.
2001-06-18 21:38:44 +00:00
Michael Elkins
9a5b57eb7d isync should continue to process additional mailboxes even if there is an
error with a previous mailbox.

added -a (--all) flag to synchronize all mailboxes defined in ~/.isyncrc
2001-06-18 17:49:08 +00:00
Michael Elkins
af941779f4 post 0.5-release commit 2001-06-13 17:13:30 +00:00
Michael Elkins
f843ffcdd4 updated ChangeLog. removed smtppush binary. 2001-06-13 16:57:25 +00:00
Michael Elkins
216c26cceb fixed compiler warnings under Solaris 2.7 2001-02-28 01:02:50 +00:00
Michael Elkins
1b97128b47 rfc2595 compliance patch from Daniel Resare <noa@metamatrix.se>
- CAPABILITY should be reissued after starting TLS since the
	  previous call was not protected
2001-02-19 18:44:15 +00:00
Michael Elkins
1db31aabd7 patch from Daniel Resare <noa@metamatrix.se>:
1 giving a path to a nonexistant rc-file with the -c argument dumps core

  The patch adds a check to ensure that the given rc-file is accessible

2 the error messages given from failed openssl calls are bogus

  The handles the error from SSL_connect () correctly. The bug is
  understndable since the error handling in openssl is quite obfuscated.
  Good news is that the documentation manapges has been greatly updated in
  the latest version (0.9.6). See in particular err(3), ERR_get_error(3)
  and SSL_get_error(3).

  Please note that possible SSL_ERROR_SSL type errors from SSL_read() and
  SSL_write() is not handled. This should also be fixed.

3 connecting using the STARTTLS command with an imap server that is
  configured only to accept the TLSv1 protocol gives an error because isync
  sends an SSLv2 Hello message for backwards compability. (This is the case
  with the uw-imap 2000 that ships with redhat-7.0)
  I've read RFC2595 several times to see if it says something about
  compability SSL2/SSL3 hello messages but can't find anything. IMHO the
  correct thing to do is change the default to not use SSL2/3 compability
  hello when using the STARTTLS command but use it if the imaps port is
  used. The patch implements this change

4 repeated calls to SSL_CTX_set_options overwrites the old settings (the
  values needs to be ORed together)

  fixed in the patch

patch from me@mutt.org:
	\Recent messages were put in the cur/ directory instead of new/

	give error message when the LOGIN command fails
2001-02-14 20:46:41 +00:00
Michael Elkins
6dba87f0ec patch from Daniel Resare <noa@metamatrix.se>
- don't initialize ssl support if none of use_sslv* is enabled
2001-02-01 23:35:47 +00:00
Michael Elkins
77358f1706 include <sys/types.h> for off_t
patch from "lorenzo martignoni" <lorenzo.martignoni@technologist.com>
	- fixed uploading of message to IMAP server
2001-01-26 20:21:27 +00:00
Michael Elkins
91d2f60584 fixed cram compilation error under bsd
updated man page
2001-01-24 07:09:28 +00:00
Michael Elkins
7173d07192 added support for tilde (~) expansion in the Mailbox' and CertificateFile'
configuration directives

added `Maildir' configuration command to specify the default location of the
user's mailboxes.  If a relative path is used in a `Mailbox' command, this
path is used as a prefix.
2001-01-16 19:45:08 +00:00
Michael Elkins
b3672634e5 set imap->prefix to be the namespace prefix
update version to 0.5

fixed compilation warnings in imap.c
2001-01-11 10:21:20 +00:00
Michael Elkins
bcecbe5eeb broke config code into config.c
added support for uploading local messages with no UID to the IMAP server

added Expunge configuration option

added CopyDeletedTo configuration option
2001-01-11 10:13:47 +00:00
Michael Elkins
8944538399 always put changed messages in the cur/ subdirectory since they are no
longer new.

don't set \Seen implicitly for messages in the cur/ folder.  Require the S
flag on the message since Mutt will move Old (unread, but not recent)
messges into cur/.
2001-01-09 20:09:35 +00:00
Michael Elkins
32677da976 patch from Hugo Haas <hugo@larve.net>
-c was not specified in the getopt*() calls

	set global password to the one the user inputs and use that as the
	default for remaining mailboxes
2001-01-08 09:45:35 +00:00
Michael Elkins
ee0de20cf7 added --with-ssl-dir to specify an alternate installation of OpenSSL 2001-01-05 21:20:48 +00:00
Michael Elkins
21ac8842b4 pre 0.4 commit.
updated rpm spec file
2000-12-31 22:39:37 +00:00
Michael Elkins
ab6decd8a9 display how many messages were fetched from the server 2000-12-31 22:37:36 +00:00
Michael Elkins
521b68eb63 fixed compilation error with no libssl support ("lorenzo martignoni"
<lorenzo.martignoni@technologist.com>)
2000-12-31 22:17:54 +00:00
Michael Elkins
d03ce3f73d fixed config parser to accept arbitrary whitespace 2000-12-28 18:44:06 +00:00
Michael Elkins
e585d40076 use imap_close to terminate a connection in imap_open() 2000-12-27 21:16:43 +00:00
Michael Elkins
acd674f93e allow leading whitespace in config files
now possible to sync multiple mailboxes by specifying multiple aliases on
the command line.  IMAP connections are reused if possible.

don't initialize ssl unless we are going to use it.
2000-12-27 21:14:22 +00:00
Michael Elkins
6f4cd030f8 don't use NAMESPACE unless the server supports it 2000-12-23 21:57:06 +00:00
Michael Elkins
b3eb5661eb added CRAM-MD5 authentication support.
parse server capability string to determine if STARTTLS is available
2000-12-23 00:02:42 +00:00
Michael Elkins
074298d482 isync-brokenservers.diff (Jeremy Katz <katzj@linuxpower.org>)
adds support for disabling NAMESPACE, and disable various flavors of TLS/SSL
for use with some broken IMAP servers.
2000-12-22 21:22:24 +00:00
Michael Elkins
04fdf7d120 prompt user if they wish to continue if the server's X.509 certificate can't
be verified.

sync_mailbox should consider uid == 0 to be "unknown"
2000-12-22 19:30:01 +00:00
Michael Elkins
a954aeec96 fixed sync_mailbox() to correctly write new messages to the local maildir
box (Thomas Roessler <roessler@does-not-exist.org>)
2000-12-22 15:48:04 +00:00
Michael Elkins
5c08b1c4bd set default MaxSize to 0 (unlimited)
invert test for password being set after getpass() call (Magnus Jonsson
<bigfoot@acc.umu.se>)
2000-12-22 15:24:55 +00:00
Michael Elkins
0527181f45 added MaxSize configuration variable
fixed --fast to work robustly without relying on the \Recent flag in
messages
2000-12-22 07:14:32 +00:00
Michael Elkins
a8f9af4296 RFC822.PEEK is obsolete in RFC2060. Use BODY.PEEK[] instead, which does
the same thing

keep track of the uidvalidity so isync can detect if the mailbox on the
server has changed since the last sync.
2000-12-21 23:10:18 +00:00
Michael Elkins
145e4ef84d updated NEWS for 0.3 release 2000-12-21 20:59:55 +00:00
Michael Elkins
37c2379bde added support for building RPMS 2000-12-21 20:56:14 +00:00
Michael Elkins
1b25e3b739 added target for creating html version of the man page
documented the imaps: prefix to the Host command
2000-12-21 19:49:03 +00:00
Michael Elkins
bcd160efb2 can't assume flag order when fetching a message. just search for the
first `{' to find the message size.
2000-12-21 19:11:02 +00:00
Michael Elkins
b3d09b1723 added BUGS section to manpage detailing the fact that we break the
maildir(5) spec by parsing the filename

change message delivery to use the method described in maildir(5)
2000-12-21 18:16:44 +00:00
Michael Elkins
bbbe88e07d use getpass() to get the user's password
unlink the temp file if we are unable to fetch a new message from the
server.

update version to 0.3
2000-12-21 17:51:07 +00:00
Michael Elkins
fa1e46f6ec fixed typo in man page for --verbose option 2000-12-21 11:14:40 +00:00
Michael Elkins
ba7650c9b7 added generic IMAP list parser and rewrote imap_exec() to handle
arbitrary data instead of hardcoded
2000-12-21 10:24:53 +00:00