Re: [SLUG] Program to detach e-mail attachment

2005-07-05 Thread Matthew Hannigan
For just one-off's, I've used openssl's base64 encoding / decoding: $ echo fish | openssl enc -a ZmlzaAo= $ echo ZmlzaAo= | openssl enc -a -d fish -- Matt -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Re: [SLUG] Program to detach e-mail attachment

2005-07-05 Thread Peter Rundle
John Clarke wrote: Something like this should do what you want: [snip] Thanks John that's exactly the sort of tip that will get me started. I knew that this sort of class just had to exist but I often find it very difficult to google results that point to the right information. thanks agai

Re: [SLUG] Program to detach e-mail attachment

2005-07-05 Thread John Clarke
On Wed, Jul 06, 2005 at 09:42:36 +1000, Peter Rundle wrote: > looking for some pointers on getting together some code to auto process > incoming e-mails, detach their attachments and save them as files. The [snip] > anyone have some examples, web pages to go visit... Something like this shou

RE: [SLUG] Program to detach e-mail attachment

2005-07-05 Thread Roger Barnes
> looking for some pointers on getting together some code to > auto process incoming e-mails, detach their attachments and > save them as files. The MTA is qmail so the appropriate > "|myprog" entry in .qmail gets the mail passed to the program > then I need to code up something that will tak