aboutsummaryrefslogtreecommitdiffstats
path: root/TODO
Commit message (Collapse)AuthorAgeFilesLines
* Manpage, TODO, CHANGELOG: document and record wildcard expansion in IMAP ↵Nikolaus Schulz2010-08-091-2/+0
| | | | mailbox names
* TODO: drop more obsolete itemsNikolaus Schulz2010-08-081-20/+1
| | | | | | | | In particular: * we no longer use shutil.copy{,2} to write back a changed mbox * having temporary mbox files in the same directory as the originals doesn't make sense anymore since we no longer commit them with rename(2) * the --archive-name option is now implemented
* Rename archivemail.py to archivemailNikolaus Schulz2010-07-291-4/+0
| | | | | | | | | On Unix, most scripts don't come with a file extension, it's not needed, and we distribute the script as "archivemail" anyway. And most importantly, I like it better without the extension. :) With a little trick we can still load the script as a module from the test suite.
* Drop .py extension from the unittest scriptNikolaus Schulz2010-07-291-1/+1
|
* Updated TODO, dropping a lot of obsolete itemsNikolaus Schulz2010-07-291-21/+0
| | | | | | | | | | | Notable items that are now resolved or implemented: * archives are now locked * the mbox classes have been refactored to a cleaner design * we moved from flock locking to fcntl * the setuid() feature is long gone * symlink attacks for tempfiles are not possible (that is really an ancient TODO item from the original author) * the test suite now has a lot of maildir test cases
* TODO: new items: make IMAP test suite with no network I/O; drop .py extensionNikolaus Schulz2010-07-191-1/+5
|
* Switch mbox locking from flock(2) to posix lockf(2)Nikolaus Schulz2010-07-191-6/+0
| | | | flock() locks aren't portable; lockf() locks are.
* TODO: dropped items about --all, which is now implemented.Nikolaus Schulz2008-04-081-4/+2
|
* TODO: added items: Nikolaus Schulz2008-02-141-0/+7
| | | | | | * perhaps integrate --debug-imap into -vv switch * graceful IMAP connection termination upon error
* TODO: added issues: Nikolaus Schulz2008-01-191-0/+14
| | | | | | | - no locking with archives - no validation of existing archives - discomfort with current mbox class design and usage
* Updated TODO list. Added: Nikolaus Schulz2007-11-151-0/+29
| | | | | | | * rework locking * IMAP SEARCH BEFORE matching dates only, no time * document mbox format issues
* TODO: update for the upcoming release. Added new item: Nikolaus Schulz2007-11-071-6/+11
| | | | | * fix possible wrong names for IMAP mailbox archives
* TODO: new items: Nikolaus Schulz2007-11-061-2/+18
| | | | | | | | | * implement --all (?) * implement --include-draft (?) * consider to use target directories for temporary files, this might spare us one copy if they reside on other filesystems than /tmp * fallback if an IMAP server doesn't implement SEARCH (?)
* TODO: removed obsolete items: Nikolaus Schulz2007-11-021-7/+0
| | | | | | | - documentation of IMAP server side search peculiarities - Debian bug #255944, which has been recorded as unreproducible, and fixed in rev. 186.
* TODO: drop paragraph about reworking the IMAP URL parser (done).Nikolaus Schulz2007-11-011-6/+0
|
* TODO: new items: Nikolaus Schulz2007-10-231-0/+7
| | | | | | | * IMAP unittests * bug triage * Porting to email.message and the new mailbox modules in python 2.5.
* TODO: updated with some old items which weren't yet committed to svn.Nikolaus Schulz2007-09-181-0/+42
|
* TODO update. Added: IMAP url clutter/password leakage, unfriendly lockingNikolaus Schulz2006-11-021-1/+5
| | | | | practice. Removed: only prompt for IMAP password when running in terminal.
* Added a few items to the TODO list that won't be resolved with the next release.Nikolaus Schulz2006-10-311-0/+8
|
* TODO: added that currently all items are from the original author and still haveNikolaus Schulz2006-10-291-0/+3
| | | | | to be checked. :-)
* Use the archive cut-off date rather than the current time with thePaul Rodger2002-11-211-0/+2
| | | | | --suffix option.
* Don't assume that root's grpid is '0' -- on solaris it can be different.Paul Rodger2002-11-071-23/+28
|
* Removed a test rule that says we can confidently archive messagesPaul Rodger2002-10-301-0/+1
| | | | | | older than the unix epoch. (New versions of python return OverFlow error instead)
* Opps - forgot to commit the new version number changes (0.5.1)Paul Rodger2002-09-191-1/+1
|
* Fixed a bug where mailbox locking would fail under Solaris, also fixedPaul Rodger2002-09-151-5/+1
| | | | | | | a bug where archiving maildir mailboxes without a 'Received Date' or 'From' header would fail. Removed another assert() statement that would crash on the unix epoch.
* Fixed a bug where we would throw an exception if a message was datedPaul Rodger2002-08-181-5/+3
| | | | | | exactly on the unix epoch. Also fixed a bug where trailing slashes were being passed to the archive file name.
* Updated version numbers.Paul Rodger2002-05-201-1/+1
|
* We now call mkdir() to create a temporary directory to store any generatedPaul Rodger2002-05-201-0/+1
| | | | | tempfiles. This should be a lot more secure.
* Fixed a bug where archivemail would abort if it got a date headerPaul Rodger2002-05-071-1/+1
| | | | | with a completely blank value.
* Fixed a bug where the os.rename() calls could fail if we are moving filesPaul Rodger2002-05-061-1/+1
| | | | | between partitions.
* Added a --size option to only archive messages over a certain byte size.Paul Rodger2002-04-291-4/+2
|
* Fixed a bug where the long --suffix option was not working (although thePaul Rodger2002-04-271-1/+4
| | | | | | | | | | | short option, '-s' was). Added time-based format directives to the --suffix option, so that you can do things like specify --suffix='%B%Y' to create archives named after the current month and year. Added some more tests to test_archivemail.py
* Fixed bugs where archivemail would refuse to work on python version less thanPaul Rodger2002-04-261-1/+1
| | | | | 2.2.
* Added the ability to archive messages older than a given absolute date withPaul Rodger2002-04-231-1/+3
| | | | | | the new option '--date' and fixed a bug where archivemail would complain about messages older than 1970.
* Got ready for release of version 4.1 in a couple of days.Paul Rodger2002-04-191-4/+3
|
* Added an option '--no-compress' if you don't want gzipped archives.Paul Rodger2002-04-171-4/+10
| | | | | | Added an option '--preserve-unread' to always preserved (don't archive) unread messages.
* Got ready for release of v0.3.1Paul Rodger2002-04-121-5/+1
|
* Stopped calling gzip externally and started using the 'gzip' modulePaul Rodger2002-04-121-3/+2
| | | | | | directly. Removed bzip2 and compress support since they were complicating things and you don't really need them much anyway.
* Getting ready for v0.3 release.Paul Rodger2002-04-111-6/+4
|
* We now preserve the last-accessed and last-modified timestamps correctly.Paul Rodger2002-04-081-2/+2
| | | | | | | | | | | | Fixed a bug where lockfiles were being created that were not world-readable. Made archivemail work better when used as a python module so it can integrate better with unittest. Renamed unittest script 'test_archivemail' instead of 'archivemail_test' and added about 20 more tests.
* Since we might not have a parse-able 'Date-Received' or 'Date' field,Paul Rodger2002-04-041-4/+1
| | | | | use 5 different ways to guess the date of a message.
* Remembered some more stuff to do.Paul Rodger2002-04-031-0/+3
|
* Updated tasks to reflect release of version 0.2.0Paul Rodger2002-04-031-5/+0
|
* Added headings & heaps more todo points.Paul Rodger2002-04-021-25/+31
|
* Added MH mailbox support, but we need a testing framework.Paul Rodger2002-04-021-2/+2
|
* Added maildir support, cache message-Ids, and lots of other stuff.Paul Rodger2002-03-311-5/+5
|
* Initial revisionPaul Rodger2002-03-261-0/+26