Re: sending uuencoded emails

2000-03-03 Thread Martin Keseg - Sun Slovakia - SE

Thomas Roessler ([EMAIL PROTECTED]) wrote :


 No.

 I tend do use editor macros for this purpose, like this (for jed):
 
[...stripped...]

Yes, this is a one way but I wanted some advanced features, for example 
using that variable with send-hook.
I have some friend who can't receive mime emails and I wanted to make some
automatic send-hooks to don't care about uuencoding post by hand.

-- 
   Keso
  don't worry about glory



sending uuencoded emails

2000-03-02 Thread Martin Keseg - Sun Slovakia - SE

hi,

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

-- 
   Keso
  don't worry about glory



Re: sending uuencoded emails

2000-03-02 Thread Thomas Roessler

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/