On Wed, 19 Nov 2003, ketvin wrote:
> This is a multi-part message in MIME format.
> --
> [ Picked text/plain from multipart/alternative ]
> Dear lists,
>
> i am trying to manually send email out from my exim without using any email client.
If the goal is just to avoid an email client, at your command prompt
you can:
mail someone@??? << EOF
Here's your mail.
EOF
Or create a file with the headers and message body and say:
exim -t < your_file
The file might look like:
To: someone@???
From: you@???
Subject: test
Skip a space before starting the body.
--
If you really want to connect to the smtp port then forget what I said.
Marilyn Davis
>
> i used telnet xx.xx.xx.xx 25 to connect to the smtp port, then
> ehlo
> mail fr: <local email>
> rcpt to: <external email>
>
> then it return me with "relay not permitted" , is there any way i can get over this ? i saw a AUTH there, how do i use that one ?
>
>
> thanks
> --
>
>
> --
>
> ## List details at http://www.exim.org/mailman/listinfo/exim-users Exim details at http://www.exim.org/ ##
>
>
--