]>
git.madduck.net Git - etc/mailfilter.git/blobdiff - bin/process-tickler
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
HOME = os.getenv('HOME')
MAILDIR = os.path.join(HOME, '.maildir')
TICKLER_DIR = os.path.join(MAILDIR, '.tickler')
HOME = os.getenv('HOME')
MAILDIR = os.path.join(HOME, '.maildir')
TICKLER_DIR = os.path.join(MAILDIR, '.tickler')
+DEST_DIR = os.path.join(MAILDIR, '.resubmit')
tmd = mailbox.Maildir(TICKLER_DIR)
tmd = mailbox.Maildir(TICKLER_DIR)
-imd = mailbox.Maildir(INBOX _DIR)
+dmd = mailbox.Maildir(DEST _DIR)
msg = tmd.get_message(key)
msg = tmd.get_message(key)
- print >>sys.stdout, 'I: move message %s to inbox ' % key
+ print >>sys.stdout, 'I: resubmit message %s ' % key
if msg.has_key('X-Tickle-Delivered'):
msg.replace_header('X-Tickle-Delivered', time.strftime('%c'))
else:
msg.add_header('X-Tickle-Delivered', time.strftime('%c'))
if msg.has_key('X-Tickle-Delivered'):
msg.replace_header('X-Tickle-Delivered', time.strftime('%c'))
else:
msg.add_header('X-Tickle-Delivered', time.strftime('%c'))
tmd.discard(key)
for key, msg in tmd.iteritems():
msgid = msg.get('Message-Id')
if msgid is None:
print >>sys.stderr, 'W: message without ID: ' + key
tmd.discard(key)
for key, msg in tmd.iteritems():
msgid = msg.get('Message-Id')
if msgid is None:
print >>sys.stderr, 'W: message without ID: ' + key
tickle = msg.get('X-Tickle')
if tickle is None:
print >>sys.stderr, 'W: message without tickle information: ' + key
tickle = msg.get('X-Tickle')
if tickle is None:
print >>sys.stderr, 'W: message without tickle information: ' + key
if msgids.get(msgid, None) is None:
msgids[msgid] = list()
if msgids.get(msgid, None) is None:
msgids[msgid] = list()
t = time.time()
if t >= tickle:
t = time.time()
if t >= tickle:
else:
print >>sys.stdout, 'I: message %s still has %d seconds' % (key,
int(tickle - t))
else:
print >>sys.stdout, 'I: message %s still has %d seconds' % (key,
int(tickle - t))