On 2000-03-02 10:56:13 +0100, Martin Keseg - Sun Slovakia - SE wrote:

> Is here a way how to send uuencoded email attachments w/o
> uuencoding attachments in shell ? Like a :set uuencode_post or
> something similar.

No.

I tend do use editor macros for this purpose, like this (for jed):

        define mail_insert_uuencoded()
        {
                variable file = read_file_from_mini("uuencode:");
                
                push_spot();
                shell_cmd(Sprintf("uuencode %s %s", file, file, 2));
                pop_spot();
        }

Additionally, I put this into mail_mode_hook ():

        local_setkey ("mail_insert_uuencoded", "i");


-- 
http://www.guug.de/~roessler/

Reply via email to