[xmail] Re: Block (some) attachments

2004-10-11 Thread Michael Lugassy
Thank you Francesco, It indeed worked. Can you tell me what's the different
between filters*.tabs?
I want to use the fastest attachment check. No other check (AV, content) is
used. Shouldn't I use the filters.in or global filters file? 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Francesco Vertova
Sent: Monday, October 11, 2004 4:30 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Block (some) attachments

At 16.24 11/10/04 +0200, you wrote:
>Francesco hi,
>
>This looks like exactly what I need, but although xmail process the filter,
>the bad attachment still delivers. I tried changing the error code (from 97
>to 4), but it didn't work either (message was still delivered. Can you help
>me getting it rejected? Here's a snippest of the log file.

If you plan to run it as a post-data filter you need to set the 
EXITCODE_BAD to 3. I see from the log that the filter itself does catch the 
court.exe attachment.

Ciao, Francesco

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Block (some) attachments

2004-10-11 Thread Michael Lugassy
Francesco hi,

This looks like exactly what I need, but although xmail process the filter,
the bad attachment still delivers. I tried changing the error code (from 97
to 4), but it didn't work either (message was still delivered. Can you help
me getting it rejected? Here's a snippest of the log file.

10/11/2004 4:22:04 PM   @@MSGID [i] Begin processing @@FROM -> @@RCPT
10/11/2004 4:22:04 PM   @@MSGID [i] Content-Type: multipart/mixed
10/11/2004 4:22:04 PM   @@MSGID [i] New boundary found:
=_NextPart_000_00FF_01C4AFAE.648AE110
10/11/2004 4:22:04 PM   @@MSGID [i] Content-Type: multipart/alternative
10/11/2004 4:22:04 PM   @@MSGID [i] New boundary found:
=_NextPart_001_0100_01C4AFAE.648AE110
10/11/2004 4:22:04 PM   @@MSGID [i] Content-Type: text/plain
10/11/2004 4:22:04 PM   @@MSGID [i] Content-Type: text/html
10/11/2004 4:22:04 PM   @@MSGID [i] Content-Type:
application/x-msdownload
10/11/2004 4:22:04 PM   @@MSGID [i] File Name: court.exe
10/11/2004 4:22:04 PM   @@MSGID [!] DANGER: attachment with extension
..exe [filename court.exe]
10/11/2004 4:22:04 PM   @@MSGID [!] Program terminated with 4
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Francesco Vertova
Sent: Monday, October 11, 2004 3:54 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Block (some) attachments

At 13.51 11/10/04 +0200, you wrote:
>Hi all,
>
>What's the easiest way to reject mail that contains exe, pif and vbs and
>received on XMAIL 1.20 (windows)?

I've been running a modified version of Michail Altair Valasek's FLAVS for 
a year (the link to the original version can be found on the XMail home 
page). It's a VBS script that rejects messages with executable attachments 
and calls F-PROT antivirus (DOS) for those with a .ZIP attachment. I've set 
it up as a post-data filter (issues a 550 error after the final crlf dot 
crlf). Works well on my lightweight NT4 server, no idea of possible 
performance issues with a more heavily loaded server.

Ciao, Francesco


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Block (some) attachments

2004-10-11 Thread Michael Lugassy
I have perl from ActiveState. I can run scripts.=20

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of Chris L. Franklin
Sent: Monday, October 11, 2004 3:49 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Block (some) attachments

 Hello,
1.) I guess my first question is do you have any form of perl installed =
on
your server ?
2.) Shouldn't there be a comma=A0between exe and zip?=20
Nope I want to block "exe.zip".


-- Chris L. Franklin --

>Chris hi,=20
>
>Will it work on windows?=20
>I've tried the following:=20
>"e:/xmail/filters/attachment_block.pl" @@FILE=20
>
>But I'm unsure about the first 2 lines on the .pl file:=20
>#!/usr/bin/perl=20
>And $Attachments =3D 'exe.zip,vbs'=20
>
>Will it find my perl.exe using windows paths? Shouldn't there be a =
comma=20
>between exe and zip?=20
>
>Thanks,=20
>
>Michael.=20
>
>-Original Message-=20
>From: [EMAIL PROTECTED] =
[mailto:[EMAIL PROTECTED]
>On=20
>Behalf Of Chris L. Franklin=20
>Sent: Monday, October 11, 2004 2:10 PM=20
>To: [EMAIL PROTECTED]
>Subject: [xmail] Re: Block (some) attachments=20
>
>Michael Lugassy wrote:=20
>
>>Hi all,=20
>>
>>What's the easiest way to reject mail that contains exe, pif and vbs =
and=20
>>received on XMAIL 1.20 (windows)?=20
>>
>>Thanks!=20
>>
>>-=20
>>To unsubscribe from this list: send the line "unsubscribe xmail" in=20
>>the body of a message to [EMAIL PROTECTED]
>>For general help: send the line "help" in the body of a message to=20
>>[EMAIL PROTECTED]
>>
>>
>>
>>
>Heres a smtp filter script that'll do that. you tell it what extention=20
>to filter and if ones found it sends back a "550" .=20
>error with a short message telling the sender why there message wasn't=20
>excepted.=20
>
>It can be found here :=20
>http://xmail.nomadcf.com/info.php?program=3Dattachment_filter=20
>Written in : Perl &Bash=20
>
>PS. If needed I can rewrite by org. one that was just written in bash.=20
>But it is slower can consumes ALOT more system resources.=20
>
>-- Chris L. Franklin --=20
>-=20
>To unsubscribe from this list: send the line "unsubscribe xmail" in=20
>the body of a message to [EMAIL PROTECTED]
>For general help: send the line "help" in the body of a message to=20
>[EMAIL PROTECTED]
>
>
>-=20
>To unsubscribe from this list: send the line "unsubscribe xmail" in=20
>the body of a message to [EMAIL PROTECTED]
>For general help: send the line "help" in the body of a message to=20
>[EMAIL PROTECTED]
>
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Block (some) attachments

2004-10-11 Thread Michael Lugassy
Chris hi,

Will it work on windows?
I've tried the following:
"e:/xmail/filters/attachment_block.pl"  @@FILE 

But I'm unsure about the first 2 lines on the .pl file:
#!/usr/bin/perl
And $Attachments = 'exe.zip,vbs'

Will it find my perl.exe using windows paths? Shouldn't there be a comma
between exe and zip?

Thanks,

Michael.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Chris L. Franklin
Sent: Monday, October 11, 2004 2:10 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Block (some) attachments

Michael Lugassy wrote:

>Hi all,
> 
>What's the easiest way to reject mail that contains exe, pif and vbs and
>received on XMAIL 1.20 (windows)?
> 
>Thanks!
>
>-
>To unsubscribe from this list: send the line "unsubscribe xmail" in
>the body of a message to [EMAIL PROTECTED]
>For general help: send the line "help" in the body of a message to
>[EMAIL PROTECTED]
>
>   
>  
>
Heres a smtp filter script that'll do that. you tell it what extention 
to filter and if ones found it sends back a "550" .
error with a short message telling the sender why there message wasn't 
excepted.

It can be found here : 
http://xmail.nomadcf.com/info.php?program=attachment_filter
Written in : Perl & Bash

PS. If needed I can rewrite by org. one that was just written in bash. 
But it is slower can consumes ALOT more system resources.

-- Chris L. Franklin --
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Block (some) attachments

2004-10-11 Thread Michael Lugassy
Hi all,
 
What's the easiest way to reject mail that contains exe, pif and vbs and
received on XMAIL 1.20 (windows)?
 
Thanks!

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Problem with multiple instances

2004-09-12 Thread Michael Lugassy
Thank you. I've re-considered, and decided to go back to one instance. I'll
just find a "generic" domain name that will be used for all of my
applications. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Shiloh Jennings
Sent: Monday, September 13, 2004 12:18 AM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Problem with multiple instances

I see what you are trying to do.  However, I think you will run into = more
trouble if you could actually do that.  XMail needs to call itself the =
name the server's IP will reverse dns lookup to.  That is the important
check done by those somewhat outdated spam filtering dns checks.  I have
never thought those dns checks worked effectively for filtering spam, but I
= know that some ISPs still try to do filtering using dns checks.  The old =
school dns checks tried to prevent email address spoofing, but largely
failed = to do that.  SPF is a solution that actually accomplishes what that
old school = dns check filters tried to do.  As a function of time, ISPs
will drop many = of the outdated dns checks in favor of newer tech like SPF.

The bottom line is that since many ISPs host several domains on a server =
and often a single IP address, you cannot be strict about the email =
address's domain name vs the hostname of the server.  All the dns check can
really = do is check to see that the server's hostname matches the hostname
shown on = a reverse dns lookup of the server's IP address.  For example, an
email = server may say it is mail.domain.com.  Assuming the server's IP was
1.2.3.4, = then
1.2.3.4 would need to have reverse dns resolving to mail.domain.com in =
order to be legit.  The email address should be a nonissue as long as the =
server's hostname matches its IP's reverse dns lookup.  If an additional dns
= check does force the server hostname (as given by the email server
software) = to match the domain name part of the email address, then there
will be = sizeable false positives resulting in countless dropped (but
legitimate) emails, because that would basically be mutually exclusive with
the first dns = check if the ISP hosted more than one domain per server.
Anyway, the way = XMail handles this is fine as long as ISPs are not being
stupid about their = dns checks on inbound email.  When an ISP does setup
something stupid that = ends up blocking email from big hosters, the ISP's
customers let them know = about it pretty quickly.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On Behalf Of Michael Lugassy
Sent: Sunday, September 12, 2004 2:21 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Problem with multiple instances

Davide hi,

> Why this? I mean, what the end users really see is the From: header 
> and not the remote MTA from where the message came from (well, =
excluding
> Received: headers).

Spam filters sometimes compare the FROM: address to the actual mail = server
(using reverse DNS and other checks), Moreover, assuming I have 2 competing
clients on a single server, this = might look weird to users who do look at
the full headers.

Am I the only one who require such a feature?

Thanks Davide,

Michael.



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in the =
body of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Problem with multiple instances

2004-09-12 Thread Michael Lugassy
Davide hi,

> Why this? I mean, what the end users really see is the From: header
> and not the remote MTA from where the message came from (well, excluding
> Received: headers).

Spam filters sometimes compare the FROM: address to the actual mail server
(using reverse DNS and other checks),
Moreover, assuming I have 2 competing clients on a single server, this might
look weird to users who do look at the full headers.

Am I the only one who require such a feature?

Thanks Davide,

Michael.



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Problem with multiple instances

2004-09-12 Thread Michael Lugassy
Thanks Jeff, this seems logical.

Is there any way to process an outgoing message and change its headres to
contain the "domain2 properties" (i.e - different mail.domain2.com) 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Jeff Buehler
Sent: Sunday, September 12, 2004 4:39 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Problem with multiple instances

If you have two instances of any applications running, they can't both be
sharing the same ports, so, POP3 could be port 110 for 1 of the instances
and then some other port for the other instance, and SMTP could be port 25
for one of the instances and some other port for the other instance.

You can have multiple domains with one instance of xmail, but a server
generally belongs to 1 domain.  So, if my server is "server1.somenet.net",
then that is the pop3 and smtp server.  I can't at the moment think of any
good reason to have two seperate domains pointing to the same server.
However, you can have any number of domains "hosted" on that server for
email purposes.

Michael Lugassy wrote:

>Isn't it the only way to have 2 completely different "mailers" for 2 
>different applications?
>
>Assuming I have 2 projects hosted on a single server and I want 
>outgoing mail to be specifically marked as coming from domain1 or 
>domain2 , do I have any other option?
>
>-Original Message-
>From: [EMAIL PROTECTED] 
>[mailto:[EMAIL PROTECTED] On Behalf Of Shawn Anderson
>Sent: Sunday, September 12, 2004 1:53 PM
>To: [EMAIL PROTECTED]
>Subject: [xmail] Re: Problem with multiple instances
>
>I am curious:  Why two instances of XMail? 
>
>-----Original Message-
>From: [EMAIL PROTECTED] 
>[mailto:[EMAIL PROTECTED] On Behalf Of Michael Lugassy
>Sent: Sunday, September 12, 2004 5:02 AM
>To: [EMAIL PROTECTED]
>Subject: [xmail] Problem with multiple instances
>
>Hi all,
> 
>I've installed 2 instances of XMAIL on a single windows server by 
>following up some archive threads. Overall I created "Xmail2" registry 
>entry and executable, and registered it as a 2nd server, which uses its 
>own MailRoot and IP settings.
>
>Both services run just fine (no visible errors), however - when I start 
>the 2nd (new) service I can no longer send/receive emails using the 1st 
>server domains/ips.
>
>This is proarbly a connectivity/dns issue rather then Xmail issue, but 
>any help on this matter would be great.
>
>Thanks!
>
>-
>To unsubscribe from this list: send the line "unsubscribe xmail" in the 
>body of a message to [EMAIL PROTECTED] For general help: send the 
>line "help" in the body of a message to [EMAIL PROTECTED]
>
>
>-
>To unsubscribe from this list: send the line "unsubscribe xmail" in the 
>body of a message to [EMAIL PROTECTED] For general help: send the 
>line "help" in the body of a message to [EMAIL PROTECTED]
>
>
>-
>To unsubscribe from this list: send the line "unsubscribe xmail" in the 
>body of a message to [EMAIL PROTECTED] For general help: send the 
>line "help" in the body of a message to [EMAIL PROTECTED]
>
>
>  
>
-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Problem with multiple instances

2004-09-12 Thread Michael Lugassy
Isn't it the only way to have 2 completely different "mailers" for 2
different applications?

Assuming I have 2 projects hosted on a single server and I want outgoing
mail to be specifically marked as coming from domain1 or domain2 , do I have
any other option?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Shawn Anderson
Sent: Sunday, September 12, 2004 1:53 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Problem with multiple instances

I am curious:  Why two instances of XMail? 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Michael Lugassy
Sent: Sunday, September 12, 2004 5:02 AM
To: [EMAIL PROTECTED]
Subject: [xmail] Problem with multiple instances

Hi all,
 
I've installed 2 instances of XMAIL on a single windows server by following
up some archive threads. Overall I created "Xmail2" registry entry and
executable, and registered it as a 2nd server, which uses its own MailRoot
and IP settings.

Both services run just fine (no visible errors), however - when I start the
2nd (new) service I can no longer send/receive emails using the 1st server
domains/ips.

This is proarbly a connectivity/dns issue rather then Xmail issue, but any
help on this matter would be great.

Thanks!

-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] Problem with multiple instances

2004-09-12 Thread Michael Lugassy
Hi all,
 
I've installed 2 instances of XMAIL on a single windows server by following
up some archive threads. Overall I created "Xmail2" registry entry and
executable, and registered it as a 2nd server, which uses its own MailRoot
and IP settings.

Both services run just fine (no visible errors), however - when I start the
2nd (new) service I can no longer send/receive emails using the 1st server
domains/ips.

This is proarbly a connectivity/dns issue rather then Xmail issue, but any
help on this matter would be great.

Thanks!

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Creating a bounce account

2004-04-21 Thread Michael Lugassy
Hi all,
 
How can I create a "bounce" account in xmail?
I want the account [EMAIL PROTECTED] to delete every message it gets
without alerting the sender.
 
Thanks!

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: commercial anti-virus scan for x-mail?

2004-03-21 Thread Michael Lugassy
Thanks. I'll be glad to see it online.
Can you share the licensing cost for the DOS version of corporate? Does it
include liveupdates and works well on windows servers?

Thanks!

Michael. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of RaveRod
Sent: Sunday, March 21, 2004 7:23 AM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: commercial anti-virus scan for x-mail?

NAV Corporate works fine with XMail by using a filter. I have a filter for
XMail that uses MAV Corporate DOS Edition which I hope to have online in
about a week. I'll let this list know when I manage to upload it.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Michael Lugassy
Sent: Monday, 22 March 2004 11:10 AM
To: [EMAIL PROTECTED]
Subject: [xmail] commercial anti-virus scan for x-mail?

Hi there,
 
Is there a commercial anti-virus scan known to work well with x-mail?
Does NAV Corporate gets the job done? will I have to set up filters in order
to use it?
Thanks,
 
Michael.
 


-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]




-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] commercial anti-virus scan for x-mail?

2004-03-21 Thread Michael Lugassy
Hi there,
 
Is there a commercial anti-virus scan known to work well with x-mail?
Does NAV Corporate gets the job done? will I have to set up filters in order
to use it?
Thanks,
 
Michael.
 


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: multiple domains on server?

2003-08-24 Thread Michael Lugassy

Thanks Rob. I'll try and post my feedback on this.

I'm wondering if Davide is planning a way to solve this in any way?
Would the unix version perform/allow anything different?

Thanks,

Michael.

- Original Message - 
From: "Rob Arends" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, August 24, 2003 5:30 PM
Subject: [xmail] Re: multiple domains on server?


>
> There was a thread on this a while back.
> As it seems you are on Windows, If you make 3 distinct mailroots, one for
> each domain.  This would entail having different server.tab files and
> therefore, the ability to be whatever domain (1,2 or3) on different IPs.
> Then rename the xmail.exe to xmail1.exe, xmail2.exe etc. These MUST be
> unique names within the server.
> Then register the service and add the registry key, as per readme, BUT
> replace "xmail" with the new name of the exe.
>
> You will have 3 instances running on 3 individual IPS. Each stating they
are
> their own domain.
>
> Rob :-)
> For further info please checkout the forum archives.
>
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] Behalf Of Michael Lugassy
> > Sent: Sunday, August 24, 2003 9:05 PM
> > To: [EMAIL PROTECTED]
> > Subject: [xmail] Re: multiple domains on server?
> >
> >
> >
> > Sonke hi,
> >
> > There are already 3 different IPs, isn't there an easier way to do it?
> > If not, should I install 3 different NT services as well?
> >
> > Thanks,
> >
> > Michael.
> >
> > - Original Message -
> > From: "Sönke Ruempler" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Sunday, August 24, 2003 2:00 PM
> > Subject: [xmail] Re: multiple domains on server?
> >
> >
> > >
> > > > Is there a way to completely SEPERATE between 3 domains?
> > >
> > > 3 IPs and 3 instances of XMail (with separate server.tab) bound to the
> > > specific IP.
> > >
> > > -
> > > To unsubscribe from this list: send the line "unsubscribe xmail" in
> > > the body of a message to [EMAIL PROTECTED]
> > > For general help: send the line "help" in the body of a message to
> > > [EMAIL PROTECTED]
> > >
> > >
> >
> >
> > -
> > To unsubscribe from this list: send the line "unsubscribe xmail" in
> > the body of a message to [EMAIL PROTECTED]
> > For general help: send the line "help" in the body of a message to
> > [EMAIL PROTECTED]
> >
> >
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: multiple domains on server?

2003-08-24 Thread Michael Lugassy

Sonke hi,

There are already 3 different IPs, isn't there an easier way to do it?
If not, should I install 3 different NT services as well?

Thanks,

Michael.

- Original Message - 
From: "Sönke Ruempler" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, August 24, 2003 2:00 PM
Subject: [xmail] Re: multiple domains on server?


>
> > Is there a way to completely SEPERATE between 3 domains?
>
> 3 IPs and 3 instances of XMail (with separate server.tab) bound to the
> specific IP.
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] multiple domains on server?

2003-08-24 Thread Michael Lugassy
Hi there,

I have xmail set up on my mail.domain1.com
I also have mail.domain2.com and mail.domain3.com on the same server.

When sending mails through mail.domain2/3.com I don't want any note of 
mail.domain1.com on the email headers. However, since mail.domain1.com is what set up 
on server.tab, every outgoing mail (on either IP) has one or more lines from 
domain1.com ("Received from mail.domain1.com", "On Behalf of mail.domain1.com", etc.)

Is there a way to completely SEPERATE between 3 domains?

Thanks,

Michael.
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Adding files to pickup manually

2003-07-25 Thread Michael Lugassy

Hi there,

I'm using an external application that creates well formatted, plain text
files that are similar to the SMTP message format of XMAIL (and any other
SMTP server for that matter).

I was reading this-
http://www.xmailserver.org/Readme.html#xmail_spool_design

Is it true that I only need to create the mstime.pid.hostname on a randomly
selected "parent" spool folder? such as :
C:\xmail\spool\7\4
C:\xmail\spool\7\2
C:\xmail\spool\11\12

What if I write a file with a different filename then mstime.pid.hostname ?
will XMAIL still handle it?

Thanks!


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] DNSReport

2003-07-22 Thread Michael Lugassy

Hi there,

I recently ran a DNSReport on my webserver and got this.
Should I care?

Thanks-

Michael.

=
WARN
Acceptance of domain literals
One or more of your mailservers does not accept mail in the domain literal
format ([EMAIL PROTECTED]). Mailservers are technically required RFC1123 5.2.17
to accept mail to domain literals for any of its IP addresses. Not accepting
domain literals can make it more difficult to test your mailserver, and can
prevent you from receiving E-mail from people reporting problems with your
mailserver. However, it is unlikely that any problems will occur if the
domain literals are not accepted.

mail.myserver's [EMAIL PROTECTED] response:
>>> RCPT TO: <[EMAIL PROTECTED]>
<<< 550 Relay denied


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: For Davide Xmail Log reader Link.

2003-07-22 Thread Michael Lugassy

Is there a more "textual" version of this? more of a console like-and-feel
I don't want to install programs I don't know on a production server.

Thanks.

- Original Message - 
From: "Nick Marino" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 22, 2003 4:58 AM
Subject: [xmail] For Davide Xmail Log reader Link.


>
> Here is a link to the Log reader program.
>
> Description: Utility to read Xmail SMTP logs and present them in a
readable
> format. Includes search feature and individual record view.
>
> www.kryptontech.com/modules.php?name=Downloads&d_op=viewdownload&cid=2
>
> Thanks.
>
> Nick
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] 552 Delivery Error

2003-07-21 Thread Michael Lugassy

Hi there,

Anyone knows what that error means, and how can I avoid this error?



[<02>] The reason of the delivery failure was:

552 I do not accept mail from unknown IP 199.144.155.166, please correct
your reverse DNS

[<04>] Here is listed the message log file:

[PeekTime] 1058781681 : Mon, 21 Jul 2003 12:01:21 +0200
<<
ErrCode   = -82
ErrString = [RCPT TO:] not permitted by remote SMTP server
ErrInfo   = 552 I do not accept mail from unknown IP 199.144.155.166, please
correct your reverse DNS
SMAIL SMTP-Send MX = "email1.atc.cz." SMTP = "mail.mymailserver.co.il" From
= "[EMAIL PROTECTED]" To = "[EMAIL PROTECTED]" Failed !
SMTP-Error = "552 I do not accept mail from unknown IP 199.144.155.166,
please correct your reverse DNS"
SMTP-Server = "email1.atc.cz."
>>


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Is that correct?

2003-07-14 Thread Michael Lugassy

Tracy,

I did get the final email, so in my case it's open relay.
Moreover, I personally believe that having then email received (but not
delieverd), is as bad.

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Is that correct?

2003-07-14 Thread Michael Lugassy

Another test from abuse.net
Relay test 1
>>> RSET
<<< 250 OK
>>> MAIL FROM:<[EMAIL PROTECTED]>
<<< 250 OK
>>> RCPT TO:[EMAIL PROTECTED]
<<< 250 OK
>>> DATA
<<< 354 Start mail input; end with .
>>> (message body)
<<< 250 OK 

My SMTPRELAY.TAB was the only file changed, it looks like this:

"166.139.214.100" "255.255.255.255"
"166.139.214.101" "255.255.255.255"

Any help?

Michael.

- Original Message - 
From: "Michael Lugassy" <[EMAIL PROTECTED]>
To: "XMail" <[EMAIL PROTECTED]>
Sent: Monday, July 14, 2003 7:30 PM
Subject: Is that correct?


> Davide,
>
> I have a user with a "*" alias. (aliases.tab = "relaydomain.com" "*"
"info")
>
> I run the open relat test on: http://members.iinet.net.au/~remmie/relay/
>
> Server was accepting relay:
>
> To: [EMAIL PROTECTED]
> From: [EMAIL PROTECTED]
> <<< 250 OK
> >>>> MAIL FROM:
> <<< 250 OK
> >>>> RCPT TO:
> <<< 250 OK
> >>>> DATA
> <<< 354 Start mail input; end with .
> >>>> MESSAGE
> <<< 250 OK
>
> Now, when I REMOVED the alias, the same test performed well (no relay).
>
> Should it happen? Does the "*" really matter?
>
> Michael.
>


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Is that correct?

2003-07-14 Thread Michael Lugassy

Davide,

I have a user with a "*" alias. (aliases.tab = "relaydomain.com" "*" "info")

I run the open relat test on: http://members.iinet.net.au/~remmie/relay/

Server was accepting relay:

To: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
<<< 250 OK
 MAIL FROM:
<<< 250 OK
 RCPT TO:
<<< 250 OK
 DATA
<<< 354 Start mail input; end with .
 MESSAGE
<<< 250 OK

Now, when I REMOVED the alias, the same test performed well (no relay).

Should it happen? Does the "*" really matter?

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Rob,

> This maybe caused by a firewall,  some FWs don't allow internal servers to
> use the external NAT addresses.  Now if Xmail was looking up dns records
> from the rrot-servers, then eventually xmail would be trying to lookup the
> dns server on itself but using the external IP.
> The packet would be blocked by the FW.  No response from the DNS is the
> effect.

Indeed I have a firewall.
Any idea on what will perfom best?

my.ip.numbers:tcp
or pdns.mydomain.com:udp ?

Thanks!

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Yes!! that solved it-

> Search the doco for SmartDNSHost
> 

Thank you so much Rob, Tracy and Davide!!

Michael.

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Tracy (and Davide)-

> Which flavor of OS are you running? Your mention of ASP makes me think it
> might be Windows. If so, try the following from a command prompt:
>
> And see what you get back for each one. Again, using my own domain as an
> example, your session might look something like this:

I got the pretty much the same results in a timely manner (less then a
second for each request).
Can you think of any idea why my DNS resolution (on xmail) is taking too
much time?

Thank you for your time.

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Looks like we're getting close.

The messages ARE delivered correctly, but not in a timely fashion.
It takes about 20 minutes to deliver messages to external domains and 0
seconds to deliver them to local users.

Is there a timeout or delay option I have set up wrong somewhere?

Thanks,

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Tracy hi,

Is that the way I should define it?

Here's my smtprelay.tab:

"164.149.214.100" "255.255.255.255"
"164.149.214.101" "255.255.255.255"
"164.149.214.102" "255.255.255.255"
"164.149.214.103" "255.255.255.255"
"164.149.214.104" "255.255.255.255"
"164.149.214.105" "255.255.255.255"
"164.149.214.106" "255.255.255.255"
"164.149.214.107" "255.255.255.255"
"164.149.214.108" "255.255.255.255"

Michael.

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Davide,

> Yes, a lot thx. Your XMail machine cannot fire DNS queries *or* the target
> domain does not have neiher MX nor A records.

My machine IS a DNS server as well, and the MX/A records are valid (I'm sure
because I can connect them and retrieve mail on them).

What do you think?

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Tracy,

> What is in the associated slog file for those messages?

<<
ErrCode   = -103
ErrString = Error in function {stat}
SMAIL SMTP-Send FF = "externaldomain.com" SMTP = "mail.mymailserver.com"
>From = "[EMAIL PROTECTED]" To = "[EMAIL PROTECTED]" Failed !
SMTP-Error = "417 Temporary delivery error"
SMTP-Server = "externaldomain.com"
>>

Help?


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Davide,

> Use smtprelay.tab to restict relaying, not smtpauth.tab. Also you don't
> need smtpauth.tab for SMTP authentication. XMail does the first lookup
> inside the account database. Not sure what you men for "refferes".
>

Sorry, I used smtprelay.tab (not smtpauth) - that has FAILED the abuse.net
relay test.

Regarding refferes - I meant redirect. I want the server to allow sending to
external email accounts - but, if the server is blocking all external smtp
sending, who should have smtp permission? and which?

Overall, the server is restricted to ALL external users sending, except
those originating from my webserver and those who are specified as
"redirects".

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Hi again,

> use mailproc.tab and "redirect" switch.
> see the doc für details.

I set up relay succesfuly, for 3 different emails (1 is of an internal/local
domain, the other 2 are external domains accoutns) - the local user has got
the message, the other 2 - not. (I can see their message stuck in the
queue).

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Xmail and Abuse.net

2003-07-14 Thread Michael Lugassy

Hi there,

I'm trying to restrict my xmail 1.16 server to allow SENDING only on very
specific issues:

1) e-mails originating from my web server (a set of 8 IPs).
I basically use a number of ASP pages that send out mail to outside cusomers
using CDONTS.
If the e-mails were created and sent from the server, they should be
allowed.

I tried adding the IP numbers to SMTPAUTH.tab, but that has failed abuse.net
relay test.

2) e-mails sent to "reffer-only" accounts on my server.
For example: I have a local user : [EMAIL PROTECTED] that has 2 refferes to
external domains (that are not hosted on my server) - I want emails sent to
[EMAIL PROTECTED] to be reffered correctly - currently it stay on the server.

I tried adding my postmaster account "MR" priviliages, but it didn't work.

Any help on how to achive both tasks AND survive the abuse.net relay test
would be great!

Michael.


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] what's that?

2003-07-14 Thread Michael Lugassy
and most important, do I need it?
[PeekTime] 1058188710 : Mon, 14 Jul 2003 15:18:30 +0200

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Deleting Old Queue

2003-07-09 Thread Michael Lugassy

Davide hi,

I use Windows, and there dozens of directories (folders and sub-folders).
Is there any batch/tool/script that does this automatically so I can
schedule it?

Thanks,

Michael.

- Original Message - 
From: "Davide Libenzi" <[EMAIL PROTECTED]>
To: "XMail" <[EMAIL PROTECTED]>
Sent: Wednesday, July 09, 2003 7:50 PM
Subject: [xmail] Re: Deleting Old Queue


>
> On Wed, 9 Jul 2003, Michael Lugassy wrote:
>
> > Hi there,
> >
> > How can I delete old queue, log files and undelivered messages?
>
> Wild way : remove everything that starts with a digit inside spool
> (note "local" and "temp" do not start with a digit)
>
> Carefull way: Remove frozen files and associated slog files
>
> In Unix this will do it :
>
> # find $MAIL_ROOT/spool -type f | grep '/froz/' | sed 's/froz/slog/' |
xargs rm -f
> # find $MAIL_ROOT/spool -type f | grep '/froz/' | xargs rm -f
>
>
>
> - Davide
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Deleting Old Queue

2003-07-09 Thread Michael Lugassy
Hi there,

How can I delete old queue, log files and undelivered messages?

Thanks,

Michael.
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Updating Version

2003-07-09 Thread Michael Lugassy
Sorry for this, possible, FAQ, but I couldn't find an answer-

How can I Upgrade my xmail (currently 1.15) to version 1.16?
Should I just replace the EXE files? no NT-Service or .tab files change?

Thanks,

Michael.
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]