Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!
Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.
Strony: 1
fetchmail nie da rady?
Offline
procmail + jakiś zmyślny skrypcik powinien dać radę.
Offline
Taki mały skrypcik do zapisywania załączników z pliku emaila do jakiegoś katalogu. Powinien działać.
Jako parametr podaje się plik emaila. Można też podać docelowy katalog do zapisu, ale nie wiem czy działa, nie przetestowałem dobrze skryptu.
#!/usr/bin/env python import base64 import email import sys from os.path import exists, normpath from re import match, search switches = { 'catalog':['-c','--catalog'], } args = sys.argv[1:] decode = base64.standard_b64decode default_dir = '/tmp' def parse_args(args,switches): """Save all passed switches to params dictions. Reast of argumets are treated like filenames. Keyword arguments: args - list of command lines argumets switches - dict of defined command switches """ params = dict() for i,switch in enumerate(switches,1): tmp_switch = switches[switch] for j in tmp_switch: if j in args: index = args.index(j) try: params.update({switch:args.pop(index+1)}) except IndexError: print "Not given value for %s switch" % j args.pop(index) return params def save_attachments(mail_file,dir=default_dir): """Save attachments from email. Keywords arguments: mail_file - file object dir - string dir to save attachments into """ mail = email.message_from_file(mail_file) item = 'Content-Disposition' for i in mail.get_payload(): items = dict(i.items()) if item in items.keys(): if match(r'^attachment',items[item]): file = decode(i.get_payload()) # Create file object for attachment. match_name = search(r'filename="(.*)"',items[item]) a_file_name = match_name.group(1) dest_dir_param = 'catalog' if dest_dir_param in params.keys(): dir = params[dest_dir_param] file_path = ''.join([default_dir,'/',a_file_name]) file_path = normpath(file_path) ap = open(file_path,'w') ap.write(file) ap.close() params = parse_args(args,switches) for mail_file in args: if exists(mail_file): mf = open(mail_file,'r') save_attachments(mf,default_dir) mf.close()
Offline
Strony: 1
Time (s) | Query |
---|---|
0.00013 | SET CHARSET latin2 |
0.00004 | SET NAMES latin2 |
0.00131 | SELECT u.*, g.*, o.logged FROM punbb_users AS u INNER JOIN punbb_groups AS g ON u.group_id=g.g_id LEFT JOIN punbb_online AS o ON o.ident='18.117.145.67' WHERE u.id=1 |
0.00069 | REPLACE INTO punbb_online (user_id, ident, logged) VALUES(1, '18.117.145.67', 1732398751) |
0.00050 | SELECT * FROM punbb_online WHERE logged<1732398451 |
0.00065 | DELETE FROM punbb_online WHERE ident='3.147.65.111' |
0.00050 | SELECT topic_id FROM punbb_posts WHERE id=106388 |
0.00006 | SELECT id FROM punbb_posts WHERE topic_id=13018 ORDER BY posted |
0.00054 | SELECT t.subject, t.closed, t.num_replies, t.sticky, f.id AS forum_id, f.forum_name, f.moderators, fp.post_replies, 0 FROM punbb_topics AS t INNER JOIN punbb_forums AS f ON f.id=t.forum_id LEFT JOIN punbb_forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id=3) WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id=13018 AND t.moved_to IS NULL |
0.00004 | SELECT search_for, replace_with FROM punbb_censoring |
0.00168 | SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM punbb_posts AS p INNER JOIN punbb_users AS u ON u.id=p.poster_id INNER JOIN punbb_groups AS g ON g.g_id=u.group_id LEFT JOIN punbb_online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id=13018 ORDER BY p.id LIMIT 0,25 |
0.00068 | UPDATE punbb_topics SET num_views=num_views+1 WHERE id=13018 |
Total query time: 0.00682 s |