[xmail] Multiple outbound smtp connections

2010-10-06 Thread Bill Healy
How many connections will xmail make to a particular server at one time
if there are many messages to deliver to the same domain? And is there a
way to limit the number if the answer is more than a few?

Reason I ask is that mail to a particular domain is being delayed by a
temporary error saying there are too many connections try later. The
people in charge of said server say that xmail must be making more than
5 connections to one server or 3 to another of their servers to get that
message. 

I've looked through the docs and can't find any way to limit the number
of simultaneous connections to a server, is there such a setting? I
thought there was, but can't find it.

Thanks,
 Bill

___
xmail mailing list
xmail@xmailserver.org
http://xmailserver.org/mailman/listinfo/xmail


Re: [xmail] ERDNS weirdness

2009-09-05 Thread Bill Healy
HI Davide,

So am I correct that all the RDNS check does is look for a hostname and
that's all? Or does it compare it to something once it gets it?

Davide can you, or anyone else on this list e-mail an exe of the test
program so I can see if it works on the Windows 2000 server that xmail
is on?

Thanks,
 Bill




--
From:  Davide Libenzi[SMTP:davi...@xmailserver.org]
Sent:  Thursday, September 03, 2009 3:00 PM
To:XMail Users Mailing List
Subject:   Re: [xmail] ERDNS weirdness

On Thu, 3 Sep 2009, Bill Healy wrote:

 Hi,
 
 I'm having problems receiving mail a particular server. It's being
 logged as an ERDNS issue, but when I lookup the IP using the same DNS
 server xMail uses I get an answer, although not a configuration I've
 seen before, but maybe it's legal, I don't know all the RFCs. So I don't
 know if the problem is the way they have setup their RDNS or something
 else.
 
 As I understand from what I can find in the docs smtp-rdnscheck just
 looks for the IP address having a record. Or is it looking for a PTR
 record on the first lookup with out recursion? Or is there something
 else it's doing?
 
 This is xMail 1.25 on Windows. Can anyone make sense of why the ERDNS is
 coming up?

XMail does simply a SysGetHostByAddr() when doing an RDNS check, and this 
translates to a call to getnameinfo(), on both Windows and Unix.
It works fine on Linux (using the test program below), and it should even 
on Windows:

$ gcc -o nettest nettest.c
$ ./nettest 207.162.214.242
name = 'mx.soldoutdisciples.com'



- Davide



#include stdio.h
#include stdlib.h
#include string.h
#include sys/socket.h
#include netinet/in.h
#include arpa/inet.h
#include netdb.h

int main(int ac, char **av)
{
   int error;
   struct sockaddr_in addr;
   char name[256];

   memset(addr, 0, sizeof(addr));
   addr.sin_family = AF_INET;
   if (inet_aton(av[1], (struct in_addr *) addr.sin_addr) == 0) {
   perror(av[1]);
   return 1;
   }
if ((error = getnameinfo((struct sockaddr *) addr, sizeof(addr),
name, sizeof(name), NULL, 0, NI_NAMEREQD)) != 
 0) {
   fprintf(stderr, %s: %s\n, av[1], gai_strerror(error));
   return 1;
}
   printf(name = '%s'\n, name);

   return 0;
}

___
xmail mailing list
xmail@xmailserver.org
http://xmailserver.org/mailman/listinfo/xmail

___
xmail mailing list
xmail@xmailserver.org
http://xmailserver.org/mailman/listinfo/xmail


[xmail] ERDNS weirdness

2009-09-03 Thread Bill Healy
Hi,

I'm having problems receiving mail a particular server. It's being
logged as an ERDNS issue, but when I lookup the IP using the same DNS
server xMail uses I get an answer, although not a configuration I've
seen before, but maybe it's legal, I don't know all the RFCs. So I don't
know if the problem is the way they have setup their RDNS or something
else.

As I understand from what I can find in the docs smtp-rdnscheck just
looks for the IP address having a record. Or is it looking for a PTR
record on the first lookup with out recursion? Or is there something
else it's doing?

This is xMail 1.25 on Windows. Can anyone make sense of why the ERDNS is
coming up?

Here's an excerpt from the smtp log and what I get when I dig the IP
address.


mx.x.com  mx.xx.com 207.162.214.242   
2009-08-12
15:20:21   mx.soldoutdisciples.com k...@usd21.org
SNDRIP=ERD
NS   0 


dig -x 207.162.214.242

;  DiG 9.3.2  -x 207.162.214.242
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 51
;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 3, ADDITIONAL: 3

;; QUESTION SECTION:
;242.214.162.207.in-addr.arpa.  IN  PTR

;; ANSWER SECTION:
242.214.162.207.in-addr.arpa. 2971 IN   CNAME
242.224/27.214.162.207.in-addr.arpa.
242.224/27.214.162.207.in-addr.arpa. 37771 IN PTR
enoch.soldoutdisciples.com.
242.224/27.214.162.207.in-addr.arpa. 37771 IN PTR
mx.soldoutdisciples.com.

;; AUTHORITY SECTION:
224/27.214.162.207.in-addr.arpa. 37771 IN NSns1.lightonthenet.org.
224/27.214.162.207.in-addr.arpa. 37771 IN NSns3.lightonthenet.org.
224/27.214.162.207.in-addr.arpa. 37771 IN NSns2.lightonthenet.org.

;; ADDITIONAL SECTION:
ns2.lightonthenet.org.  569866  IN  A   207.162.214.229
ns3.lightonthenet.org.  604118  IN  A   207.162.214.233
ns1.lightonthenet.org.  604118  IN  A   207.162.214.232

;; Query time: 62 msec
;; SERVER: 192.168.1.249#53(192.168.1.249)
;; WHEN: Thu Sep 03 10:59:48 2009
;; MSG SIZE  rcvd: 247


Thanks,
 Bill

___
xmail mailing list
xmail@xmailserver.org
http://xmailserver.org/mailman/listinfo/xmail


[xmail] Invalid server address error on startup

2009-01-29 Thread Bill Healy
Hi,

Trying to setup xMail v1.25 on Windows 2003 server 64-bit. Have made it
over several humps so far, figured out had to install Visual  runtime to
get the EXE to run, figured out had to put reg entry under win6432node
so mail root was found, but now when I start the service it quits with
an entry in the event log that says Invalid Server Address. I tried
specifying the server's address in the registry cmd line value, but that
didn't work. So what are possible causes I should look for? 

By the way I copied tab settings from another running xMail server, so
unless there is a typo I've missed, it shouldn't be in there.

Thanks,
 Bill

___
xmail mailing list
xmail@xmailserver.org
http://xmailserver.org/mailman/listinfo/xmail


[xmail] Re: XMail SMTP outgoing port?

2008-05-30 Thread Bill Healy
Fred,

Is your problem that you can't connect to your xMail server at work on
port 25 from home? If that's the case you can setup xMail to listen on
port 25 and another port of your choice using the -SI as you mentioned. 

Bill


--
From:  fred[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, May 29, 2008 1:12 PM
To:xmail@xmailserver.org
Subject:   [xmail] Re: XMail SMTP outgoing port?

Thanks for your replies, 

Well, it's not really blocked, it works IF you are using the ISP SMTP. But
this ISP prevents the use other SMTP other than their own.

At work, where I am right now, my SMTP server works because we have a fixed
IP and the ISP let us use it. But at home, with a standard internet link
from this same ISP they block all except their own smtp.

So if I am at home, I

-Cannot send using my smtp
-Cannot send using my SSL smtp
-Cannot send using their smtp with my domain (they have activated SMTP-auth)
-Can only send mail using the email they gave me when I got this link
installed ([EMAIL PROTECTED])

The only way I could send mails with my domain would be to set up SMTP auth
in my mail client with the username/password I have for [EMAIL PROTECTED] 
account,
but they told me this won't work for a long time.

Like Davide said, I am pretty much screwed..

-fred

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Tjeerd Makel
Sent: 29 mai 2008 15:24
To: xmail@xmailserver.org
Subject: [xmail] Re: XMail SMTP outgoing port?

Dear Fred,

Are you sure port 25 is blocked for outbound?

Maybe I've got it wrong, but how does your e-mail client send it's mails
to the rest of the world? Which smtp-server do you use in Outlook or
whatever you use? Maybe you can use it as a mail-forwarder (smarthost)?

Yours,

Tjeerd


 Thanks for the reply Davide, I understand that point.

 But how would one configure it's server to listen on 25 for inbound and
 listen on another port for when a user wants to send mails, it this eve=
n
 possible?

 What are the solutions when the ISP blocks 25/465 for sending mails =3D
 then?

 Thanks

 -fred


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
] =3D
 On
 Behalf Of Davide Libenzi
 Sent: 29 mai 2008 13:25
 To: xmail@xmailserver.org
 Subject: [xmail] Re: XMail SMTP outgoing port?

 On Thu, 29 May 2008, fred wrote:
 Hi all,=3D20
=3D20
 Is it possible to configure XMail to run on a non-standard port only =3D
 for
 outgoing connections?
=3D20
 My ISP is blocking port 25 for outbound only, but if I understand the
 documentation correctly; if I change the port using =3D93-Sp port=3D94=
 =3D
 XMail will
 stop listening to port 25 for inbound connections so I will have =3D
 problems
 receiving mails.
=3D20
 Is there any solution to this problem?

 Unfortunately, remote SMTP servers have the bad habit to listen to port=
 =3D
 25
 ;)


 - 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]


-
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: 1.25 just started to seg fault

2008-05-20 Thread Bill Healy
If it's a memory problem it could be that 1.24 doesn't use as much so
doesn't hit the problem. If you don't have a good memory tester go grab
a ISO at http://www.memtest.org/ and make a bootable memory test CD.

Bill


--
From:  fred[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, May 20, 2008 7:19 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: 1.25 just started to seg fault

Well, re-compiling the sources didn't help.

I have started fresh using the MailRoot/ inside the tarbal, copied my =
..tab
files over original ones, ran XMAIL in debug mode and it crashed after =
the
third pop3 connection.

/var/log/messages shows:

May 20 10:05:36 mail kernel: pid 39029 (XMail), uid 0: exited on signal =
11
(core dumped)

Signal 11 is most likely an hardware problem but why does 1.24 runs =
fine?=20

fred


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of fred
Sent: 20 mai 2008 09:25
To: xmail@xmailserver.org
Subject: [xmail] 1.25 just started to seg fault

Hello all,
=20

A production server running FreeBSD-7.0 and XMAIL-1.25 just started to =
core
dump a few days ago=85 I have disabled all the filters, deleted content =
of
tabindex, deleted spool, deleted logs, chmodded -R 777, dnscache and it =
keep
crashing after a few pop3 connections.

=20

I have ran hardware tests on the server and it doesn=92t seem to be an
hardware problem, debug only shows lines like =93POP3 connection FROM =
1.2.3.4=94
and then a new line with =93Segmentation fault (core dumped)=94. There =
is
nothing in the systems logs.. I am quite lost=85

=20

To fix the problem I had to downgrade to 1.24 binaries, the server runs =
with
them for 4 days now and no crash. I have no idea with 1.25 would =
suddenly
start crashing like that after months of stable use. I guess I will just
recompile the whole 1.25 source and try the new binaries, they might =
have
been corrupted?

=20

Anyone have any idea? Thank you.

=20

-fred=20

=20

=20


-
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: Lockdown xMail

2008-04-24 Thread Bill Healy
If you need a quick temporary solution to your spam problems you should
look into putting an Untangle server ( www.untangle.com ) in transparent
mode between your mail server and the outside world. It's free and can
be set to block most spam. Transparent mode is just as it sounds, you
don't have to give it the IP address of your server and change your
servers IP address and do relaying. It does get an IP address, but it's
unrelated to your server and is just for management of the Untangle box
and quarantine access if you use that feature.

It does use a combination of black lists and spam signatures, so if any
of your customers are connecting from black listed IP address that could
be a problem unless you want to whitelist any problem addresses.

Bill



--
From:  Hal Dell[SMTP:[EMAIL PROTECTED]

 
Dear Davide -

 OK, I lied to you. Actually, I forgot about mailauth no being clear
 by ipprop. Note for self: Add an smtp.iprop.tab option to release
 the MailAuth constraint.

Thanks for getting to the bottom of this. 

Any chance I could get a test binary for Windows that I could use
to make sure everything works. Otherwise, it could be a long wait
for my customers who need spam filtering from postini yesterday
because they are getting burried in SPAM.

Any assistance would be appriectiated before the next release.

Thanks,
Hal Dell
Managing Partner
ePodWorks.net, Inc.



-
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: FreeBSD problem (similar to NetBSD problem report ed earlier?)

2008-02-24 Thread Bill Healy
In order to solve the problem of internal network machines reaching
other internal machines using their external address on linux firewalls
that I have installed that use IPTables I've had to create a NAT rule
that remaps the source address to that of the firewall's internal
address. 
The command is:
iptables -A POSTROUTING -s 192.168.0.0/255.255.255.0 -d
192.168.0.0/255.255.255.0 -p tcp -m tcp -m multiport --dports
smtp,http,pop3,https -j SNAT --to-source 192.168.0.1

Which says if the traffic source is the internal network and the
destination is the internal network and the destination ports are
smtp,http,pop3 or https then make the source address the firewalls
internal address. 

This is in the postrouting chain because the prerouting chain has
already changed the packets external destination into an internal
address when it first hit the firewall rules.

So what happens is that the packet is then passed off to the internal
server you are trying to reach, the response goes back to the firewall
because of the source address translation and then the firewall
redirects the packet back to the original source.

I didn't figure this out myself, years ago I googled until I found the
answer and have been using it ever since. Maybe you can find the
equivalent rule for m0n0wall.

Packet flow diagram time:
internal server sends to external address (of destination internal
server)
firewall rules applied that change destination to internal address
packet becomes internal server address to internal address of
destination internal server

if you stopped here the destination server would try and respond back to
the source directly, not who it was trying to talk to, so:
Firewall remaps source of packet to itself and remembers who the real
source is
firewall internal address sends to internal address of destination
internal server
Internal server responds to firewall internal address
firewall remaps packet destination address back to the original source
and passes it on
and everyone is happy!

Hope this helps.

Bill


--
From:  Rob Arends[SMTP:[EMAIL PROTECTED]
Sent:  Sunday, February 24, 2008 4:59 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: FreeBSD problem (similar to NetBSD problem report  
ed
earlier?)

Jeff,

There are firewalls out there that consider traffic in and out of the *same*
interface to be illegal and they deny it.
Depending on your perspective and requirements, this is a good thing.

Also some firewalls require the traffic to pass-through to be NAT'd.
If you don't have the same-interface issue above, you may have your traffic
not pass through the NAT tables because it turns around and goes out the
same interface before it hits the NAT tables.

This is really getting in to Firewall design specifics.  You'll need to dig
deep with the doco for your firewall(s) and maybe even log a support case to
get your answer.

Good luck.

Rob :-)
 
_
It might look like I'm doing nothing, but on a cellular level, I'm quite
busy.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Jeff Buehler
Sent: Sunday, February 24, 2008 4:02 AM
To: xmail@xmailserver.org
Subject: [xmail] Re: FreeBSD problem (similar to NetBSD problem report ed
earlier?)

Hi Rob -

That is more or less what is happening, but I'm not clear about the 
specifics.  I'm finding it a bit of a mystery -  the firewall does NAT, 
but the external DNS server trying to contact the internal server does 
so in the case of many other domains, so the firewall is properly 
configured for external queries - also, a dig dns1.buehlertech.net 
+trace works properly from the server (as does dns2.buehlertech.net 
which is on another public IP and behind a different router running 
PFSense) so dns1.buehlertech.com (and dns2.buehlertech.com) must be 
visible without difficulty to the external dns server.  The server 
shouldn't really be trying to communicate with it's own public IP 
(itself), but rather the external dns server which then should simply 
return the public IP of the server doing the query, or so I would think, 
but I guess dig +trace has to literally dig all the way back to itself?  
Even then, why is the secondary dns, which works and is on an entirely 
separate network, not stepping in?  Also, if I do a dig trikorausa.com 
+trace from my secondary server (dns2.buehlertech.net) it works fine.  
Perhaps the PFSense router is handling the query and NAT properly and 
the m0n0wall router is not?

At this point to me it is some sort of voodoo dns issue (and here I am 
without any animal sacrifice to offer it), but it isn't causing me any 
real headaches since SmartDns works.  I will look more closely at NAT, 
though, as I suspect you are right that it is at the center of the issue 
somehow - it simply redirect inbound requests to port 53 of the server 
in question, nothing complex.  I still need to look at the other 
external cases, but I have a feeling that 

[xmail] Re: Maximum DNS quesry depth exceeded

2008-01-10 Thread Bill Healy
Are you using a smart DNS server in your server.tab on either xmail
server?

Bill


--
From:  Filip Supera[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, January 10, 2008 4:58 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: Maximum DNS quesry depth exceeded

Mihai Dobre :

 Does XMail machines use the same DNS server? Can you do a dig mx 
 paruvendu.com on both of them?
 

Thanks Mihai.

On the machine from which I have the problem :

# dig mx paruvendu.com

;  DiG 9.3.4  mx paruvendu.com
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 49794
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 3, ADDITIONAL: 2

;; QUESTION SECTION:
;paruvendu.com. IN  MX

;; ANSWER SECTION:
paruvendu.com.  86400   IN  MX  10 mx1.comareg.fr.
paruvendu.com.  86400   IN  MX  20 mx2.comareg.fr.

;; AUTHORITY SECTION:
paruvendu.com.  86400   IN  NS  ns1.comareg.fr.
paruvendu.com.  86400   IN  NS  ns4.oleane.net.
paruvendu.com.  86400   IN  NS  ns5.oleane.net.

;; ADDITIONAL SECTION:
ns4.oleane.net. 77728   IN  A   194.2.0.4
ns5.oleane.net. 77728   IN  A   194.2.0.5

;; Query time: 22 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Thu Jan 10 13:31:28 2008
;; MSG SIZE  rcvd: 177


On the machine from which I can send message without problem :

# dig mx paruvendu.com

;  DiG 9.3.2-P1  mx paruvendu.com
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: SERVFAIL, id: 6409
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;paruvendu.com. IN  MX

;; Query time: 7 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Thu Jan 10 13:32:12 2008
;; MSG SIZE  rcvd: 31


-
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: Strange error after upgrade

2007-05-24 Thread Bill Healy
Make sure they have send authentication turned on in their e-mail
program.

Bill


--
From:  Edinilson - ATINET[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, May 23, 2007 11:19 AM
To:xmail@xmailserver.org
Subject:   [xmail] Strange error after upgrade

I don=B4t know exactly why, but after migrate to version 1.24 (+- 30 =
days=20
ago), some users are getting this error randomly:

550 Relay Denied

when sending emails out of my server.

If they try once again, the message is delivered without problems.

Some tip?

Thanks

Edinilson
-
ATINET-Professional Web Hosting
Tel Voz: (0xx11) 4412-0876
http://www.atinet.com.br=20

-
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: Small GLST bug maybe?

2007-02-28 Thread Bill Healy
If all your incoming e-mail has to go through your ISP then there is no
point in greylisting since your server will only be talking to one other
server, your ISPs server.

Bill


--

 You must have some serious mis-configuration, since GLST works
 flawlessy in all my boxes.

Hmmm... could be. My last email to this list took 48 hours to be
delivered... Your reply took only 3 minutes though.

My setup is a bit strange. My primary MX points to my ip but my isp
blocks port 25. So mail can't be delivered directly. My isp forces me
to use a mailrelay server that can access my mailserver over port 25.
That's my secondary MX. In a way I'm using nolisting as described
here http://www.joreybump.com/code/howto/nolisting.html. I'm sure you
can remember the thread on this list with that subject.

Maybe it's a bad idea to combine nolisting with graylisting...(?)
Or maybe my isp's relayserver is just slow or badly configured...(?)

-- 
Henri.


-
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: Has filter processing changed in version 1.24

2007-01-17 Thread Bill Healy

RTFM http://www.xmailserver.org/Readme.html#command_line
-Qg appears to be how.

--
From:  Brian[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, January 17, 2007 5:46 PM
To:xmail@xmailserver.org
Subject:   [xmail] Re: Has filter processing changed in version 1.24


Is there a way to do that in xmail?

I have logging in the filter perl script itself, and it looks as though
the script is never called.


Davide Libenzi wrote:
 On Tue, 16 Jan 2007, Brian wrote:

   
 I'm setting up the sa_filter for spam assassin the same way i did on my 
 old machine, but it seems to not be working

 I added the line to filters.in.tab, put the filter config.tab file in 
 the filters directory, and put the perl script in the bin directory.

 If I call the perl script from the command line i get the correct error 
 in the logs dir saying can't fine file.

 But when XMail runs, no entries go into the log spam log file, or any 
 log file for that matter.

 Is there any log file that will show a debug type message for the filter 
 call?
 

 Enable filter logging and see what happens...



 - 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]



[xmail] Re: error 162 when adding a domain

2006-07-19 Thread Bill Healy

If you have edited any of the tab files manually try stopping xmail,
removing the files from the tabindex directory and restarting xmail. See
if that fixes your problem.

Bill


--
From:  Dave Henderson[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, July 18, 2006 7:09 PM
To:xmail@xmailserver.org
Subject:   [xmail] error 162 when adding a domain

 Gang,
  
   I am setting up an xmail server for the first time. I  looked for
tutorials on the homepage and found one
(http://www.ubaight.com/index.php?option=com_wrapperItemid=37). I  get to
the part where I need to create additional domains using the  CtrlClnt tool
such as:
  
  CtrlClnt -s mail.domain.com -u username -p password domainadd
anotherdomain.com
  
  and get:
  
  ErrCode   = -162
  ErrString = End of socket stream data
  
  I  searched through the forums about this issue, but people seemed to be
getting a 162 error when sending or receiving email, not when trying to
setup an additional domain. I have looked in the syslog without any  luck.
Any help would greatly be appreciated.
  
  Thanks,
  Dave

-
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: error 162 when adding a domain

2006-07-19 Thread Bill Healy

Hi Dave,

I see that you have fixed the problem but I'll clarify why I was telling
you clear the tabindex directory. If you had edited some of the indexed
files, by stopping xmail, clearing the tabindex directory and restarting
xmail you would have caused xmail to rebuild the index files. Xmail will
not have a problem in many cases starting and stopping if the index
files are messed up,  but it will have strange problems when using them.

Bill

--
From:  Dave Henderson[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, July 19, 2006 5:29 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: error 162 when adding a domain

Thanks for your reply Bill.  I don't have a problem starting or  stopping the
daemon, I have a problem adding an additional domain when  using the
CtrlClnt utility.  Should I run the CtrlClnt utility  while the mail
server is running.  The documentation on the  website says that some files
can't be edited while it is running  because they are indexed.
  
  Thanks,
  Dave
  
  

Bill Healy [EMAIL PROTECTED] wrote:  
If you have edited any of the tab files manually try stopping xmail,
removing the files from the tabindex directory and restarting xmail. See
if that fixes your problem.

Bill


--
From:  Dave Henderson[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, July 18, 2006 7:09 PM
To:  xmail@xmailserver.org
Subject:  [xmail] error 162 when adding a domain

 Gang,
  
   I am setting up an xmail server for the first time. I  looked for
tutorials on the homepage and found one
(http://www.ubaight.com/index.php?option=com_wrapperItemid=37). I  get to
the part where I need to create additional domains using the  CtrlClnt tool
such as:
  
  CtrlClnt -s mail.domain.com -u username -p password domainadd
anotherdomain.com
  
  and get:
  
  ErrCode   = -162
  ErrString = End of socket stream data
  
  I  searched through the forums about this issue, but people seemed to be
getting a 162 error when sending or receiving email, not when trying to
setup an additional domain. I have looked in the syslog without any  luck.
Any help would greatly be appreciated.
  
  Thanks,
  Dave

-
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: Listen on specific IP addresses?

2006-06-27 Thread Bill Healy

You don't need to keep reinstalling xmail, just restart it for new
command line parameters to take effect.



--
From:  Kay Seljeseth[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, June 27, 2006 1:00 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: Listen on specific IP addresses?


Hi and thanks!

Yes, running on XP. The problem was basically related to my reading
abilities ;) ..

Added the -SI parm to the registry, did a new --install-auto and =
voila:
Xmail works as expected and the SpamFighter tunnel is up and running. =
Then
of course new issues like the fact that the Spamfigther hides the =
sending IP
address behind a local address (hint: open relay danger) and probably =
more,
but so far - so good.

Kay



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of Kirk Friggstad
Sent: 26. juni 2006 23:30
To: xmail@xmailserver.org
Subject: [xmail] Re: Listen on specific IP addresses?


Hi Kay:=20

It looks like you're running XMail on Windows, right? When XMail is run =
as a
service on Windows, the command-line parameters (including -SI, etc.) =
are
kept in a registry key - see the NT/Win2K section of the main XMail =
README
file ( http://xmailserver.org/Readme.html#nt_win2k ) for more info. Hope
this helps.

Kirk

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of Kay Seljeseth
Sent: Monday, June 26, 2006 2:32 PM
To: xmail@xmailserver.org
Subject: [xmail] Re: Listen on specific IP addresses?


Thanks, but I'm experiencing problems when playing around with this =
option.
I have tried to set it in different ways:

a) Remove and add service with SI option:

xmail --remove
xmail --install -SI x.x.x.204

Afterwards XMail does answer on both the primary (204) and my spam
designated IP address (233) using telnet on port 25


b) Xmail starting without knowing the IP address?

Removed (233) IP address from IP Properties in XP
Restarted XMail server
Added IP address (233) in IP props

Still XMail does answer on both the primary (204) and my spam designated =
IP
address (233) using telnet on port 25


c) Running commandline

c:\mailroot\bin\xmail -SI x.x.x.204:25

Still it does answer on the 233 address in addition to the 204 address.

I have searched the registry to find a reference, without luck.

Would be nice with an option like -SU ip:[port] to Unbind the xmail =
service?


Pls.. any ideas?

:) Kay









-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of John Kielkopf
Sent: 26. juni 2006 18:18
To: xmail@xmailserver.org
Subject: [xmail] Re: Listen on specific IP addresses?


Yes, the sending IP address is the server's primary address... but that=20
shouldn't matter in his case.

--John


Rob Arends wrote:
 I seem to remember that the -SI option was for incoming, but the =
sending
 from xmail was still on the Servers primary Address - Please check the
List
 Archive for verification, in case I'm wrong.


 Rob :-)
 =20
 _
 Note To Self: Remember to put something witty here later...
 =20

 -Original Message-
 From: [EMAIL PROTECTED] =
[mailto:[EMAIL PROTECTED]
On
 Behalf Of John Kielkopf
 Sent: Tuesday, 27 June 2006 12:25 AM
 To: xmail@xmailserver.org
 Subject: [xmail] Re: Listen on specific IP addresses?


 Use the -SI command line option.

 From: http://www.xmailserver.org/Readme.html#command_line

 -SI ip[:port]
 Bind server to the specified ip address and (optional) port (can =
be
 multiple).


 --John


 Kay Seljeseth wrote:
  =20
 We have been running XP and Xmail Server without any problems for a =
long
 time, but would now also like to run a spam filter (SpamFighter) on =
the
=20
 same
  =20
 machine. Hence, we would like to use two IP addresses where the
=20
 SpamFighter
  =20
 gets incoming mail first on one public SMTP IP address, checking the
email
 and then forwarding it to the Xmail Server IP address, acting as a =
SMTP
 tunnel/Proxy.

 =20

 Does anyone know how we may configure XMail server to listen on a =
single
 specific IP address? We cannot use another port number as some =
domains
 should bypass the Spam filter.

 =20

 Thanks!

 =20

 Kay



=20

  =20

-
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 

[xmail] Re: smtp works / pop doesn't

2006-02-18 Thread Bill Healy

Check the permissions on the mailroot and everything below it are set as
per the xmail readme
http://www.xmailserver.org/Readme.html#configuration

If you have a windows computer try using XMail Administrator
http://www.webifi.com/xmail/
All you have to configure to get it to work are ctrlaccounts.tab and
ctrl.ipmap.tab

Bill


--
From:  rommelaccount[SMTP:[EMAIL PROTECTED]
Sent:  Saturday, February 18, 2006 12:53 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: smtp works / pop doesn't


To test if the server can receive mail I sent a mail from my hotmailacco=
unt to the xmailserver and now the new dir in xmail has got 15 messages!=
 The mail arrives but I still can't login to read it=3F!

Gr. Martin



=20
 Don't know where the =3D20 came from=3F So don't read the 2 times =3D2=
0
=20
=20
=20
 =20
  I got every dir and file butinside domains I have got the follow=
ing =3D
  and I don't know for sure if this is correct:
  mbuijtendijk.nl (dir)
  within this dir I got: martin (dir)
  within this dir I've got:=3D20
  Maildir (dir)=3D20
  user.tab (file)
  In Maildir:
  cur (dir)
  new (dir) 14 files in it!
  tmp (dir)
 =20
  I think this asn't right
 =20
  I used a telnetsession to install everything.and I hate that=
.=3D
  when I can use an adminprogram (webinterface) I would love it, but I=
 nee=3D
  d a working account to install that=3D3F!=3D3F!=3D3F
 =20
  Gr. Martin
 =20
 =20
 =20
  =3D20
   Check your xMail configuration, did you create all the directories
   listed at http://www.xmailserver.org/Readme.html#mailroot=3D5Fstru=
cture =3D
   You
   can ignore the number directories under spool, xmail will create t=
hose=3D
  ..
   Do all the filters.* files exist=3D3F When you modified any of the=
 .tab
   files did you use real tab characters between the fields=3D3F Di=
d you
   create the domains and user accounts by hand or did you use a mana=
ger
   program for xmail=3D3F Besides changing the default email address =
in
   server.tab what else did you change=3D3F
  =3D20
   Bill
  =3D20
  =3D20
   --
   From: =3D09rommelaccount[SMTP:[EMAIL PROTECTED]
   Sent: =3D09Thursday, February 16, 2006 5:00 AM
   To: [EMAIL PROTECTED]
   Subject: =3D09[xmail] Re: smtp works / pop doesn't
   
   
   This is mine:
   
   +OK [EMAIL PROTECTED] [XMail 1.21 POP3 Server] s=
ervi=3D
  ce =3D3D
   ready; Thu, 16 Feb 2006 14:05:27 +0100
   
   Whatever I do next...my telnetbox closes!!
   
   Gr. Martin
   
   
   
   =3D3D20
Here's an exact copy of a POP3 telnet session with my mail serv=
er -=3D
   th=3D3D
   e=3D3D20
only change is to replace my password with . Note tha=
t li=3D
  nes=3D3D
   =3D3D20
sent by the server begin with + (the banner line will wrap in t=
he=3D
  =3D3D20
email). The lines I typed are the user, pass, stat, and =
quit=3D
   l=3D3D
   ines.
   =3D3D20
+OK [EMAIL PROTECTED] [XMail 1.20 POP3 Server] s=
ervi=3D
  ce=3D3D
   =3D3D20
ready; Thu, 16 Feb 2006 07:03:59 -0500
user [EMAIL PROTECTED]
+OK Password required for [EMAIL PROTECTED]
pass 
+OK Maildrop has 0 messages (0 bytes)
stat
+OK 0 0
quit
+OK [XMail 1.20 POP3 Server] closing session
   =3D3D20
   =3D3D20
Connection to host lost.
   =3D3D20
rommelaccount wrote:
 I only did [EMAIL PROTECTED] and not USER.should I=3D3D3F
=3D3D20
 Gr. Martin
=3D3D20
=3D3D20
=3D3D20
It was unclear from your message whether you are entering the=
 POP=3D
  3=3D3D
   =3D3D20
commands or just the user name. The syntax for a POP3 session=
 thr=3D
  oug=3D3D
   h=3D3D20
telnet goes:

USER [EMAIL PROTECTED]
PASS password
STAT
QUIT

STAT will list how many messages are in the mailbox.

Also, I find that using the Enter key on the numeric keypad o=
ften=3D
  =3D3D20
doesn't work right.

rommelaccount wrote:

Hey all,
 =3D3D20
  I successfully installed xmail on a NSLU2 and it works ver=
y we=3D
  ll.=3D3D
But=3D3D20

when I open outlook or a similar email-app it can find the po=
p se=3D
  rve=3D3D
   r  but
fails to log in. I use [EMAIL PROTECTED]  as a loginname and th=
e pa=3D
  ssw=3D3D
   ord is
100% correct. When I telnet to  server:110 I get a login mess=
age =3D
  and=3D3D
when
I
type my username and hit  enter, the telnetbox disappears.

  Where did I go wrong or what point did I miss=3D3D3F
 =3D3D20
  Gr. Martin
-
To unsubscribe from this list: send the line unsubscribe xm=
ail=3D
   in
the body of a message to [EMAIL PROTECTED]
For general help: send the line help in the body of a mess=
age =3D
  to
[EMAIL PROTECTED]



-
To unsubscribe from this list: send the line unsubscribe xma=
il =3D
  in
the body of a message to [EMAIL PROTECTED]
For general help: send the line help in the body of a messa=
ge t=3D
  o
[EMAIL PROTECTED]

 

[xmail] Re: smtp works / pop doesn't

2006-02-16 Thread Bill Healy

Check your xMail configuration, did you create all the directories
listed at http://www.xmailserver.org/Readme.html#mailroot_structure  You
can ignore the number directories under spool, xmail will create those.
Do all the filters.* files exist? When you modified any of the .tab
files did you use real tab characters between the fields? Did you
create the domains and user accounts by hand or did you use a manager
program for xmail? Besides changing the default email address in
server.tab what else did you change?

Bill


--
From:  rommelaccount[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, February 16, 2006 5:00 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: smtp works / pop doesn't


This is mine:

+OK [EMAIL PROTECTED] [XMail 1.21 POP3 Server] service =
ready; Thu, 16 Feb 2006 14:05:27 +0100

Whatever I do next...my telnetbox closes!!

Gr. Martin



=20
 Here's an exact copy of a POP3 telnet session with my mail server - th=
e=20
 only change is to replace my password with . Note that lines=
=20
 sent by the server begin with + (the banner line will wrap in the=20
 email). The lines I typed are the user, pass, stat, and quit l=
ines.
=20
 +OK [EMAIL PROTECTED] [XMail 1.20 POP3 Server] service=
=20
 ready; Thu, 16 Feb 2006 07:03:59 -0500
 user [EMAIL PROTECTED]
 +OK Password required for [EMAIL PROTECTED]
 pass 
 +OK Maildrop has 0 messages (0 bytes)
 stat
 +OK 0 0
 quit
 +OK [XMail 1.20 POP3 Server] closing session
=20
=20
 Connection to host lost.
=20
 rommelaccount wrote:
  I only did [EMAIL PROTECTED] and not USER.should I=3F
 =20
  Gr. Martin
 =20
 =20
 =20
 It was unclear from your message whether you are entering the POP3=
=20
 commands or just the user name. The syntax for a POP3 session throug=
h=20
 telnet goes:
 
 USER [EMAIL PROTECTED]
 PASS password
 STAT
 QUIT
 
 STAT will list how many messages are in the mailbox.
 
 Also, I find that using the Enter key on the numeric keypad often=20
 doesn't work right.
 
 rommelaccount wrote:
 
 Hey all,
  =20
   I successfully installed xmail on a NSLU2 and it works very well.=
 But=20
 
 when I open outlook or a similar email-app it can find the pop serve=
r  but
 fails to log in. I use [EMAIL PROTECTED]  as a loginname and the passw=
ord is
 100% correct. When I telnet to  server:110 I get a login message and=
 when
 I
 type my username and hit  enter, the telnetbox disappears.
 
   Where did I go wrong or what point did I miss=3F
  =20
   Gr. Martin
 -
 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]
 
 
 =20
  -
  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]
 =20
 =20
=20
 -
 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]
=20
=20
-
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: help! spammers can still send thru my xmail even if open relay is closed!

2006-01-05 Thread Bill Healy

Leave out the 192.168.0.0 entry. In your e-mail program there should be
a setting to send authentication to xmail when you are sending a message
out through it. The same way that it sends authentication when you
receive mail from xmail. If you are using Outlook Express go to Tools -
Accounts and then open the properties for you xmail account. Under the
Servers tab you will see a check box for My Server Requires
Authentication, check that box, that's all you have to do.

If you are using some other e-mail program and can't find how to enable
send authentication then reply with the name of the program and version
and I'm sure some one will know how to turn it on.

Bill

From:  garlic breath[SMTP:[EMAIL PROTECTED]

On 1/4/06, Bill Healy [EMAIL PROTECTED] wrote:


 Empty your smtprelay.tab file and see if that solves the problem. While
 the file is empty you will have to set your local machines to send
 authentication when sending mail, which is a good idea anyhow. If
 emptying the file solves the problem and you really have a reason for
 the localhost (127.0.0.1) to relay through xmail then put that entry
 back, but make the mask 255.255.255.255.

 Report on the results.

 Bill


set your local machines to send
authentication when sending mail, which is a good idea anyhow

Is that in the documentation somewhere? also, can I keep the 192.168.0.0
255.255.0.0 in the smtprelay.tab for workstations in my lan to send mail
outside without using webmail?

thanks


--
 From:  garlic breath[SMTP:[EMAIL PROTECTED]
 Sent:  Wednesday, January 04, 2006 12:59 AM
 To:xmail@xmailserver.org
 Subject:   [xmail] help! spammers can still send thru my xmail even
 if open
 relay is closed!
 
 hi,
 
 in my xmail log files I have:
 
 
 
  SMTP Relays  Total : 21205
 |---|
 1 [EMAIL PROTECTED] | 15
 2 [EMAIL PROTECTED] | 15
 3 [EMAIL PROTECTED] | 30
 4 [EMAIL PROTECTED] | 14
 5 [EMAIL PROTECTED] | 30
 6 [EMAIL PROTECTED] | 15
 7 [EMAIL PROTECTED] | 28
 8 [EMAIL PROTECTED] | 45
 9 [EMAIL PROTECTED] | 90
 10 [EMAIL PROTECTED] | 15
 11 [EMAIL PROTECTED] | 30
 12 [EMAIL PROTECTED] | 45
 13 [EMAIL PROTECTED] | 30
 14 [EMAIL PROTECTED] | 30
 15 [EMAIL PROTECTED] | 16
 16 [EMAIL PROTECTED] | 30
 17 [EMAIL PROTECTED] | 75
 18 [EMAIL PROTECTED] | 112
 19 [EMAIL PROTECTED] | 28
 20 [EMAIL PROTECTED] | 16
 21 [EMAIL PROTECTED] | 60
 22 [EMAIL PROTECTED] | 45
 23 [EMAIL PROTECTED] | 15
 24 [EMAIL PROTECTED] | 28
 25 [EMAIL PROTECTED] | 75
 26 [EMAIL PROTECTED] | 75
 27 [EMAIL PROTECTED] | 42
 28 [EMAIL PROTECTED] | 15
 29 [EMAIL PROTECTED] | 14
 30 [EMAIL PROTECTED] | 30
 31 [EMAIL PROTECTED] | 60
 32 [EMAIL PROTECTED] | 14
 33 [EMAIL PROTECTED] | 15
 34 [EMAIL PROTECTED] | 14
 35 [EMAIL PROTECTED] | 15
 36 [EMAIL PROTECTED] | 30
 37 [EMAIL PROTECTED] | 15
 38 [EMAIL PROTECTED] | 60
 39 [EMAIL PROTECTED] | 30
 40 [EMAIL PROTECTED] | 60
 41 [EMAIL PROTECTED] | 60
 42 [EMAIL PROTECTED] | 105
 43 [EMAIL PROTECTED] | 105
 44 [EMAIL PROTECTED] | 70
 45 [EMAIL PROTECTED] | 45
 46 [EMAIL PROTECTED] | 64
 47 [EMAIL PROTECTED] | 14
 48 [EMAIL PROTECTED] | 90
 
 rest is cut for brevity...
 
 I dunno how they do itopen relay is closed since I have the only
 entries
 in my smtprelay.tab are 127.0.0.1  255.0.0.0 and 192.168.0.0 
 255.255.0.0
 
 any ideas?
 
 
 
 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]



[xmail] Re: help! spammers can still send thru my xmail even if open relay is closed!

2006-01-04 Thread Bill Healy

Empty your smtprelay.tab file and see if that solves the problem. While
the file is empty you will have to set your local machines to send
authentication when sending mail, which is a good idea anyhow. If
emptying the file solves the problem and you really have a reason for
the localhost (127.0.0.1) to relay through xmail then put that entry
back, but make the mask 255.255.255.255.

Report on the results.

Bill


--
From:  garlic breath[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, January 04, 2006 12:59 AM
To:xmail@xmailserver.org
Subject:   [xmail] help! spammers can still send thru my xmail even if open
relay is closed!

hi,

in my xmail log files I have:



 SMTP Relays  Total : 21205
|---|
1 [EMAIL PROTECTED] | 15
2 [EMAIL PROTECTED] | 15
3 [EMAIL PROTECTED] | 30
4 [EMAIL PROTECTED] | 14
5 [EMAIL PROTECTED] | 30
6 [EMAIL PROTECTED] | 15
7 [EMAIL PROTECTED] | 28
8 [EMAIL PROTECTED] | 45
9 [EMAIL PROTECTED] | 90
10 [EMAIL PROTECTED] | 15
11 [EMAIL PROTECTED] | 30
12 [EMAIL PROTECTED] | 45
13 [EMAIL PROTECTED] | 30
14 [EMAIL PROTECTED] | 30
15 [EMAIL PROTECTED] | 16
16 [EMAIL PROTECTED] | 30
17 [EMAIL PROTECTED] | 75
18 [EMAIL PROTECTED] | 112
19 [EMAIL PROTECTED] | 28
20 [EMAIL PROTECTED] | 16
21 [EMAIL PROTECTED] | 60
22 [EMAIL PROTECTED] | 45
23 [EMAIL PROTECTED] | 15
24 [EMAIL PROTECTED] | 28
25 [EMAIL PROTECTED] | 75
26 [EMAIL PROTECTED] | 75
27 [EMAIL PROTECTED] | 42
28 [EMAIL PROTECTED] | 15
29 [EMAIL PROTECTED] | 14
30 [EMAIL PROTECTED] | 30
31 [EMAIL PROTECTED] | 60
32 [EMAIL PROTECTED] | 14
33 [EMAIL PROTECTED] | 15
34 [EMAIL PROTECTED] | 14
35 [EMAIL PROTECTED] | 15
36 [EMAIL PROTECTED] | 30
37 [EMAIL PROTECTED] | 15
38 [EMAIL PROTECTED] | 60
39 [EMAIL PROTECTED] | 30
40 [EMAIL PROTECTED] | 60
41 [EMAIL PROTECTED] | 60
42 [EMAIL PROTECTED] | 105
43 [EMAIL PROTECTED] | 105
44 [EMAIL PROTECTED] | 70
45 [EMAIL PROTECTED] | 45
46 [EMAIL PROTECTED] | 64
47 [EMAIL PROTECTED] | 14
48 [EMAIL PROTECTED] | 90

rest is cut for brevity...

I dunno how they do itopen relay is closed since I have the only entries
in my smtprelay.tab are 127.0.0.1  255.0.0.0 and 192.168.0.0 
255.255.0.0

any ideas?



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]



[xmail] Re: Misdirected Bounces

2005-12-30 Thread Bill Healy

Per the information on the link xMail already does what they request.

Configure your software to either reject messages during delivery or
accept them permanently. Do not let your software make choices about
delivery after it has accepted a message.

xMail will not accept messages for accounts that don't exist so it won't
bounce messages after they have been accepted for delivery. The only
exception would be if you are using xmail as a relay for an internal
mail server and don't know what the accounts are at the time the message
is accepted. Is this what you are doing?

If so then maybe you should look into a filter that can validate
delivery addresses before accepting a message.

Has anyone created a filter that verifies incoming message delivery
addresses using LDAP (for those that have it) or against a text file
with a list of valid addresses?

If anyone needs it I've been using a VB script that can create a text
file list of addresses from an Exchange server/Active directory setup
with a program called Mailscanner. But it could be the start of filter
that can verify addresses against a text file list of valid e-mail
addresses. And I'm sure for the case of  an xmail server being the
secondary MX for another someone could come up with a script to extract
the list from the user file on the primary server and copy it over to
the secondary.

Bill





--
From:  Shiloh Jennings[SMTP:[EMAIL PROTECTED]
Sent:  Friday, December 30, 2005 11:42 AM
To:xmail@xmailserver.org
Subject:   [xmail] Misdirected Bounces


SpamCop is blocking servers based on misdirected bounces.  SpamCop =
wants
all legit email servers to suppress bounce messages.  Is there any way =
to
prevent XMail from sending nondelivery messages?  I realize this =
violates an
RFC, but SpamCop is blocking servers based on this issue and that means
legit email is getting blocked as a result.

http://www.spamcop.net/fom-serve/cache/329.html#bounces


-
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: Misdirected Bounces

2005-12-30 Thread Bill Healy

The majority of the messages my servers turn away are pure spam and most
are addressed to accounts that have never existed, so it's not like the
addresses have been harvested from someone's infected computer. It's
become common now to just try long lists of common names @domain.com to
try and get spam through.

Here's a log extract from one of my scanning servers from today, none of
the unknown accounts ever existed, but they did manage to guess one
correct address and the message was queued, but later deleted when it
was scanned and found to be spam.

Dec 30 14:10:17 gateway sendmail[25325]: jBUMAAkD025325:
[EMAIL PROTECTED]... User unknown
Dec 30 14:10:17 gateway sendmail[25325]: jBUMAAkD025325:
[EMAIL PROTECTED]... User unknown
Dec 30 14:10:17 gateway sendmail[25325]: jBUMAAkD025325:
[EMAIL PROTECTED]... User unknown
Dec 30 14:10:17 gateway sendmail[25325]: jBUMAAkD025325:
[EMAIL PROTECTED]... User unknown
Dec 30 14:10:17 gateway sendmail[25325]: jBUMAAkD025325:
[EMAIL PROTECTED]... User unknown
Dec 30 14:10:17 gateway sendmail[25325]: jBUMAAkD025325:
[EMAIL PROTECTED]... User unknown
Dec 30 14:10:18 gateway sendmail[25325]: jBUMAAkD025325:
[EMAIL PROTECTED]... User unknown
Dec 30 14:10:18 gateway sendmail[25325]: jBUMAAkD025325:
from=[EMAIL PROTECTED], size=2119, class=0, nrcpts=1,
msgid=[EMAIL PROTECTED], proto=SMTP, daemon=MTA,
relay=pcp01924966pcs.canton01.mi.comcast.net [68.43.100.143]
Dec 30 14:10:18 gateway sendmail[25325]: jBUMAAkD025325:
to=[EMAIL PROTECTED], delay=00:00:01, mailer=relay, pri=30432,
stat=queued
Dec 30 14:10:33 gateway MailScanner[9343]: Message jBUMAAkD025325 from
68.43.100.143 ([EMAIL PROTECTED]) to .com is spam,
SpamAssassin (score=16.764, required 6, DISGUISE_PORN 1.83,
HELO_DYNAMIC_COMCAST 3.53, HTML_50_60 0.10, HTML_FONT_BIG 0.23,
HTML_MESSAGE 0.00, RCVD_IN_BL_SPAMCOP_NET 4.00, RCVD_IN_DSBL 2.77,
RCVD_IN_NJABL_DUL 1.66, RCVD_IN_SORBS_DUL 0.14, RCVD_IN_XBL 2.51)
Dec 30 14:10:33 gateway MailScanner[9343]: Spam Checks: Found 1 spam
messages
Dec 30 14:10:33 gateway MailScanner[9343]: Spam Actions: message
jBUMAAkD025325 actions are delete


No virus, just pure spam, these are the ones that will more than likely
be mis-addressed and cause bounced messages, not virii that are using
harvested addresses that are good or at least were good at some point.

Bill


John Kielkopf wrote:


I agree, it is best to have the secondary/scanning server know what 
accounts are real or not, but this isn't always practical to enforce.

Still, in the case that the secondary does attempt delivery to a 
non-existent account, as long as it's already decided that it's not a 
virus, the mailbox that it'll be sending the bounce message to is much 
less likely to be a forged, and valid, address... and this is what 
Spamcop is really trying to stop:  Bounce backs, predominately from 
virus' that forge the sender using a randomly chosen, but real, 
address.  Eliminate the virus, and you eliminate the majority of the 
problem.


Bill Healy wrote:

But if there is a secondary or virus scanning only server that is a
relay for another server it has no way of knowing which accounts are
valid and it will accept all mail for handled domains. Then when the
secondary MX or virus scanner tries to deliver the message to the
primary mail server it will at that point find out if the mail is to a
valid account. If it's not valid then the server trying to make the
delivery will generate a bounce message back to the sender, that's the
problem spamcop is trying to stop. 

The load on my spam and virus scanning servers that front end for other
mail servers has significantly decrease now that I verify who the mail
is going to before any spam or virus scanning. I'm not using xmail as my
front end server for scanning, I'm using a dedicated server with
MailScanner http://www.mailscanner.info/ to scan for virus, spam,
phishing, banned attachments, among other things before being passed on
to the Exchange and xMail servers. 

Bill

  

Bill Healy wrote:



If so then maybe you should look into a filter that can validate
delivery addresses before accepting a message.


 

  

I would think that just doing virus scanning in a post-data filter on 
the secondary MX should be enough to limit a good majority of 
misdirected bounces that would actually hit a live mailbox.  Perhaps SPF 
would catch much of the remainder?



  


-
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: Misdirected Bounces

2005-12-30 Thread Bill Healy

Misdirected because the bounced messages are going back to an address
that never sent the message in the first place.

Has spamcop listed you for bounced messages? Do you have a server that
is relaying messages to another server? 

Bill


--
From:  Shiloh Jennings[SMTP:[EMAIL PROTECTED]
Sent:  Friday, December 30, 2005 2:35 PM
To:xmail@xmailserver.org
Subject:   [xmail] Re: Misdirected Bounces


Do you have any custom domains set up to relay mail?  Do you have any 
anti virus filters that send bounce messages?

I'm trying to understand why you'd be sending so many misdirected bounces?


We do not have custom domains set up.  We are not currently sending bounces
from spam/virus filters.  

I cannot understand what SpamCop means by many misdirected bounces.

-
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: using xmail server on PC

2005-09-20 Thread Bill Healy

The password in the mailusers.tab file is encrypted and you can not use
that in your Outlook profile.

You will need to create a new encrypted password from a plain text
password you know using xmcrypt and then replace the password that is in
mailusers.tab with the encrypted password you created. Then put the
plain text password you used to create the encrypted password in your
Outlook profile.

Bill


--
From:  Pierre Doyon[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, September 20, 2005 12:14 PM
To:xmail@xmailserver.org
Subject:   [xmail] using xmail server on PC


Hi,

I trying to use XMailserver on my PC. I fellowed the configuration  
setting in the readme file without creating new  account. I did not  
change smtprelay.tab and server.tab files. I just want to do a  
test with the sample user account xmailuser. I created new profil  
in Outlook with the fellow parameters:

name : xmailuser
address :  [EMAIL PROTECTED]
pop3 server : localhost
smtp server : localhost
user name : xmailuser
password : the password in the mailusers.tab

I installed and started the xmail service but the connexion of my new  
outlook profil with the pop3 server and the smtp server seem not work.

I would like to have a hint.

Thanks
Pierre



-
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: sendmail problem

2005-08-29 Thread Bill Healy

Did you create the temp and local directories in spool and do they have
the proper permissions?

/chroot/var/MailRoot/spool/temp/
/chroot/var/MailRoot/spool/local/

Bill

--
From:  Den_M[SMTP:[EMAIL PROTECTED]
Sent:  Monday, August 29, 2005 4:51 AM
To:xmail@xmailserver.org
Subject:   [xmail] sendmail problem


Hi, first of all, Davide, thanks for your GREAT xmail server.
It's very help me :).

But now I occur a little problem with sendmail.

I have chrooted xmail-1.21 placed in /chroot/var/MailRoot.
All files and folders in /chroot/var/MailRoot has UID and GUID = 500
(non root). XMail manage domain bogus.home where there are users:
support and test. All working fine: psync, smpt, pop3.
But when I run script with root privileges which exec command:

/chroot/var/MailRoot/bin/sendmail [EMAIL PROTECTED] [EMAIL PROTECTED]
 msg.txt

where msg.txt is:

Subject: test
MIME-Version: 1.0
Content-type: text/plain; charset=Windows-1251
Content-Transfer-Encoding: quoted-printable

(message body)

sendmail print some kind of:

cannot move file:
/chroot/var/MailRoot/spool/temp/1213221313.3453.host.mail

Please tell me, what I doing wrong or how to fix this problem.

PS: sorry for my English :)
-- 
WBR Den_M  mailto:[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: imap ? or something relevant ?

2005-08-12 Thread Bill Healy

It may be in another pst file, but Outlook doesn't have to work with the
large pst every time a message comes in. The only time the large pst
will have to be worked with is when messages are archived.

Bill

--
From:  Rob Arends[SMTP:[EMAIL PROTECTED]
Sent:  Friday, August 12, 2005 8:41 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: imap ? or something relevant ?


Spyros,

Investigate Outlook's Archive feature - I think it will do what you want -
maintain pst file sizes.
Unfortunately, it archives to another pst file, so all you really have done
is split it into two files.
At least you can save that pst to a CD and they can have their 'archives'
off line. 

Rob :-)

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Ward Durossette
Sent: Friday, August 12, 2005 10:25 PM
To: xmail@xmailserver.org
Subject: [xmail] Re: imap ? or something relevant ?


Spyros,

  I needed to archive messages to comply with Sarb-Ox, and use XMail with
the POP3 message store.  I use a filter that copies every message to an
archive folder as it comes into XMail.  This is a little different, I think
than your problem.  My archival process involves saving every message for
history, your archival seems to be aging messages out of the mailbox for the
purpose of size control.

  If I understand your problem correctly, the size of the outlook.pst files
on the user's machines is causing you grief.  You are looking for a way to
store messages server side, and limit the size of the user's mailboxes.

  I am not sure that a POP solution will work. Because of the way POP is
designed, your users must take extra efforts to not remove them from the 
server.   And these efforts can be undone quite easily, causing the 
messages to download to the client.  Then you are right were you are now.

  As a client side solution, using POP as the protocol, I am thinking of
some kind of program/script/outlook rule that would process the client side
mail store and copy/delete old message to the server archival location.
Sounds messy.

  IMAP seems like your best option as a server side message store.  You can
control the size of the mailboxes, and the messages stay on the server,
allowing you to perform processing on them.

ward


Spyros Tsiolis wrote:

Hello people,

I am trying to find a way to archive messages on the xmail server side 
(xmail v1.17 running on linux).

I have big-time problems with staff owning big, really BIG mailboxes.
It affects everything; from the performance of each workstation to 
Outlook 2k behaving erratically.

Any help would be greatly appreciated (as always).

s.



-
I merely function as a channel that filters music through the chaos of 
noise
- Vangelis

_
FREE pop-up blocking with the new MSN Toolbar - get it now! 
http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/

-
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]


  


--
Ward Durossette
Director Of Technical Solutions
Community Banking Systems
1412 Main Street - 14th Floor
Dallas, Texas 75202

http://www.combanksys.com (web)
[EMAIL PROTECTED] (email)
214-752-3444 (work phone)
877-353-6271 (fax)

-
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: Can't send email from outside of my LAN

2005-07-26 Thread Bill Healy

Well I can telnet to mail.azlin.com port 25, but maybe his friends ISP
is blocking access to port 25. 

Only thing I see unusual is the DNS info
azlin.com.  6925IN  MX  0 mail.azlin.com.
azlin.com.  6925IN  MX  100 mx2.zoneedit.com.

I can't remember if 0 is a valid precedence or not.

Bill

--
From:  Jeff Buehler[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, July 26, 2005 10:14 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: Can't send email from outside of my LAN


Try telneting to the SMTP port (25)  to make certain it isn't blocked.  
Your ISP may be blocking port 25 (most of them are these days).

i.e. telnet mail.yourdomain.com 25

or by ip

telnet xx.xxx.xxx.xx 25

Jeff

Larry Azlin wrote:

Greetings.

I run Xmail 1.21 on a SUSE 9.0 box to host my personal email
(azlin.com), and all's well if the laptop running my email client
(Thunderbird) is on my LAN.  Recently I've been taking the laptop over
to a friend's house and trying to send email from there, w/o success. 
I can GET email from my Xmail server, I just can't SEND through it.

I've modified smtprelay.tab to include the ip at my friend's house, so
it now looks like:

192.168.0.0[TAB]255.255.0.0
xxx.xxx.xxx.0[TAB]255.255.255.0

And I've verified that smtp.ipmap.tab is correct:

0.0.0.0[TAB]0.0.0.0[TAB]ALLOW[TAB]1

Just to be sure, I've also looked at my pop3 log files and verified
that I've got his ip address correct.  Yet, when I try to send email,
there's a long delay while Thunderbird is trying to send, and I get an
unable to access server type of message.  I'm betting that there's
something simple which I need to do in addition to the above changes
 can anyone point me in the right direction?

TIA,
Larry Azlin

P.S.  I restarted Xmail after these changes.

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
-
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: Backup server

2005-06-29 Thread Bill Healy

Hi Liam,

You only partially have right how to setup a backup mail server. The dns
entries are fine, but you need to change the way you have your xmail
configured. What you want to do is remove the domain name and user from
your server as you currently have it setup and create a custom domain (
http://www.xmailserver.org/Readme.html#custom_domain_mail_processing )
with an smtprelay statement pointing to your clients server. Then you
may want to adjust the command line (
http://www.xmailserver.org/Readme.html#command_line ) settings for smail
to set how often and how long your server will keep trying to forward
undelivered mail before giving up. This setting will affect all
undelivered mail so find a balance between mail going to your client and
all other mail.

Bill



--
From:  BLITS Xmail[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, June 29, 2005 2:49 AM
To:xmail@xmailserver.org
Subject:   [xmail] Backup server

Hi all!

I have recently set up a bit of an ad-hoc backup system for a client's
server.  The best way to explain what I've done is to do it in sections.

DNS Records for my client's domain:
  youdontneedtoknow.com.au. MX IN 3600 mail.youdontneedtoknow.com.au.
[Preference = 10] 
  youdontneedtoknow.com.au. MX IN 3600 mail.blits.com.au. [Preference =
5000] 


His server:
is set up just as any Joe Blog would have their server set up

My server:
has youdontneedtoknow.com.au entered as a domain name and a single user under
it.  This user has an alias of *, is set to store messages and then forward
them on to a third party email address.

The idea?  If his server goes down, mine catches the mail until it comes back
online.  We can sort the mess out later :-)

The problem?  I like my client, and I want to send him emails.  But every
time I do, they end up in the third party email account.  Obviously this is
because I'm using my server as an SMTP server and it's seeing the address
internally and not feeling the need to look any further.  

How can I solve this without changing my outgoing server every time I want to
send him mail?

Thankyou in advance!!!

Liam
-
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] Script request

2005-05-31 Thread Bill Healy
Before I recreate the wheel, has anyone created a Unix script that will
read the mailuser.tab and alias.tab files and create a file of valid
e-mail addresses, 1 per line?

Thanks,
 Bill

-
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] Script request

2005-05-25 Thread Bill Healy
Before I recreate the wheel, has anyone created a Unix script that will
read the mailuser.tab and alias.tab files and create a file of valid
e-mail addresses, 1 per line?

Thanks,
 Bill

-
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: SMTP server not sending to local Exchange server

2005-05-07 Thread Bill Healy
Do you have springthrough.com setup on your xmail server? Is it included
in any of your tab files in any way shape or form?

Bill


--
From:  Jeremy Wise[SMTP:[EMAIL PROTECTED]
Sent:  Saturday, May 07, 2005 10:31 AM
To:xmail@xmailserver.org
Subject:   [xmail] SMTP server not sending to local Exchange server

Greetings,

I'm trying desperately to get my XMail server properly configured, but
I've hit one huge problem.  Our primary server for our mail domain is
mail.springthrough.com, which is an exchange server.  I also have a
linux box running xmail that hosts several other domains,
linuxmail.springthrough.com.  Both are on the internal network,
192.168.10.x.  The XMail server works great for half a dozen domains..
Except that when someone tries sending an email from one of those
domains to our exchange server, the email just disappears into nowhere!
Xmail's logs say the mail was properly received, but the Exchange server
is never contacted.

If I set the Exchange server as the default smtp gateway, everything
works.  But I don't want to send all email through the Exchange server,
I just want mail properly delivered to that server (anything
@springthrough.com).  What am I doing wrong?   Where is the email going?

Thanks!

Jeremy Wise
-
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: An easy way to upgrade xmail

2005-04-20 Thread Bill Healy
And create/modify any files or directories that have changed in the
changelogs and then just stop xmail, replace the binaries and restart
xmail.

Bill


--
From:  S=F6nke Ruempler[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, April 20, 2005 5:03 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: An easy way to upgrade xmail

Hi,

 Does anyone know if there is an easy way to upgrade previous versions
 of xmail
 to xmail v1.21 ?
=3D20
 There is an awfull lot of receipients that I wouldn't want to loose.
=3D20
 Two systems. One , xmail v1.20 and the other xmail v1.17

Read the changelogs from 1.17 to 1.21.
-
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: AW: Re: AW: Re: AW: Bind sending IP ?

2005-04-20 Thread Bill Healy
Why have different addresses for each domain? Xmail doesn't need a
different address for each domain and web sites don't need them either,
what's the reason?

Bill

--
From:  Harald Schneider[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, April 20, 2005 6:48 AM
To:xmail@xmailserver.org
Subject:   [xmail] AW: Re: AW: Re: AW: Bind sending IP ?

It's a default setting by the server's hoster in order to assign =
different
addresses to different domains.

--Harald


 -Urspr=FCngliche Nachricht-
 Von: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Im Auftrag von Bill Healy
 Gesendet: Mittwoch, 20. April 2005 15:45
 An: 'xmail@xmailserver.org'
 Betreff: [xmail] Re: AW: Re: AW: Bind sending IP ?
=20
=20
 What is your reason for having multiple IP addresses on one NIC card?
=20
 Bill
=20
=20
 --
 From:   Harald Schneider[SMTP:[EMAIL PROTECTED]
 Sent:   Tuesday, April 19, 2005 2:13 PM
 To: xmail@xmailserver.org
 Subject:[xmail] AW: Re: AW: Bind sending IP ?
 
 I see .. thanks for clarification!
 
 --Harald
 
  -Urspr=3DFCngliche Nachricht-
  Von: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] Im Auftrag von=20
 S=3DF6nke Ruempler
  Gesendet: Dienstag, 19. April 2005 22:59
  An: xmail@xmailserver.org
  Betreff: [xmail] Re: AW: Bind sending IP ?
 =3D20
 =3D20
  Hi Harald,
 =3D20
  On Tuesday, April 19, 2005 7:17 PM [GMT+1=3D3DCET],
  Harald Schneider [EMAIL PROTECTED] wrote:
 =3D20
   I wonder if binding to an outgoing IP can be forced on=20
 application =3D
 =3D3D
   level.
   There is an option for sendmail which seems to do exactly this:
  
   -
   ClientPortOptions
  
   This option is similar to the DaemonPortOptions but is=3D20
  meant only for
   __outgoing__ connections.
  
   The steps to set this option are same as those for the
   DaemonPortOptions except that the option name ClientPortOptions
   should be specified =3D3D instead of
   DaemonPortOptions.
  
 =3D20
  It's the outgoing Ports, _NOT_ the IP!
 =3D20
  I know that on linux the systems handles this with it's=3D20
  routing table. An=3D20
  application cannot bind to an outgoing IP!
 =3D20
  Don't believe route command - just do a:
 =3D20
  # ip route
 =3D20
  and additionally a:
 =3D20
  # ip addr
 =3D20
  and you can see exactly what is going on - here example of my=3D20
  local nets:
 =3D20
  # ip route
  192.168.1.0/24 dev eth2  proto kernel  scope link  src 192.168.1.1
  192.168.0.0/24 dev eth1  proto kernel  scope link  src 192.168.0.1
 ^^^
 =3D20
  From manpage:
 =3D20
 =3D20
 src ADDRESS
the source address to prefer when sending to=3D20
  the destinations=3D20
  covered by the route prefix.
 =3D20
 =3D20
  -
  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]
 =3D20
 
 -
 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]
=20

-
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: DNS question

2005-04-11 Thread Bill Healy
dig works for me.

dig -t mx observerstar.cn

;  DiG 9.2.1  -t mx observerstar.cn
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 41607
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2

;; QUESTION SECTION:
;observerstar.cn.   IN  MX

;; ANSWER SECTION:
observerstar.cn.21549   IN  MX  1 219.235.226.194.

;; AUTHORITY SECTION:
observerstar.cn.21549   IN  NS  dns7.hichina.com.
observerstar.cn.21549   IN  NS  dns8.hichina.com.

;; ADDITIONAL SECTION:
dns7.hichina.com.   83254   IN  A   218.30.103.250
dns8.hichina.com.   83254   IN  A   218.244.135.41



--
From:  Adrian Hicks[SMTP:[EMAIL PROTECTED]
Sent:  Monday, April 11, 2005 2:01 AM
To:xmail@xmailserver.org
Subject:   [xmail] DNS question

Hi all.

I've got a problem sending to one domain (observerstar.cn) as follows:

* When I do a dig -t mx (Linux) I get no answer, ie. there seems to be
   no mx record.

* After a little checking I discovered that mail.observerstar.cn exists
I can telnet to it at port 25.  I assume that this is an A record.

Do any XMail config options allow specifying the correct mail server, ie 
mail.observerstar.cn even if it's an A record?  Would either smtpgw.tab or 
sftpfwd.tab be the correct way to handle this?

Thanks.


Adrian Hicks
-- 
MIS  Facilities Manager
Auston Int'l Group Ltd
45 Middle Rd, #01-00 Auston Unicentre
Singapore 188954

Tel: +65 6339 4800 ext. 229
Fax: +65 6339 7600
Web: http://www.auston.edu.sg
-
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: anti-spam DNS MX Record Lookup

2005-03-29 Thread Bill Healy
Look at CheckMailerDomain in Server.tab,
http://www.xmailserver.org/Readme.html#server_tab_variables

Bill


--
From:  Jeff Buehler[SMTP:[EMAIL PROTECTED]
Sent:  Monday, March 28, 2005 8:32 PM
To:Xmail Mailing List
Subject:   [xmail] anti-spam DNS MX Record Lookup

Hi all -

Does anyone know of a way, or have a filter written to, do a lookup of 
the domain in the from field and/or the return field of an email and 
check that it has a valid MX record as a spam deterrent using XMail?  I 
haven't been able to find a reference to this on line...

Thanks!

Jeff
-
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: Problems with hotmail.com

2005-03-11 Thread Bill Healy
Try telneting to mx1.hotmail.com smtp port and sending a message by hand
and see what messages you get back and at what point in the transaction.

Bill


--
From:  [EMAIL PROTECTED]:[EMAIL PROTECTED]
Sent:  Friday, March 11, 2005 5:30 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: Problems with hotmail.com

Yes, issuing at DOS prompt:
nslookup -type=3DMX hotmail.com 200.231.29.10
it is being resolved without problems.

Below a SLOG from spool:


[PeekTime] 1110537048 : Fri, 11 Mar 2005 07:30:48 -0300

ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx1.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx1.hotmail.com.


ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx2.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx2.hotmail.com.


ErrCode   =3D -232
ErrString =3D Error connecting to remote address
SMAIL SMTP-Send MX =3D mx3.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx3.hotmail.com.


ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx4.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx4.hotmail.com.

[PeekTime] 1110537291 : Fri, 11 Mar 2005 07:34:51 -0300

ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx1.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx1.hotmail.com.


ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx2.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx2.hotmail.com.


ErrCode   =3D -232
ErrString =3D Error connecting to remote address
SMAIL SMTP-Send MX =3D mx3.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx3.hotmail.com.


ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx4.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx4.hotmail.com.

[PeekTime] 1110537580 : Fri, 11 Mar 2005 07:39:40 -0300

ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx1.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx1.hotmail.com.


ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx2.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx2.hotmail.com.


ErrCode   =3D -232
ErrString =3D Error connecting to remote address
SMAIL SMTP-Send MX =3D mx3.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx3.hotmail.com.


ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx4.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx4.hotmail.com.

[PeekTime] 1110537948 : Fri, 11 Mar 2005 07:45:48 -0300

ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx1.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx1.hotmail.com.


ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx2.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx2.hotmail.com.


ErrCode   =3D -232
ErrString =3D Error connecting to remote address
SMAIL SMTP-Send MX =3D mx3.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx3.hotmail.com.


ErrCode   =3D -162
ErrString =3D End of socket stream data
SMAIL SMTP-Send MX =3D mx4.hotmail.com. SMTP =3D mailserver From =
=3D
[EMAIL PROTECTED] To =3D [EMAIL PROTECTED] Failed !
SMTP-Error =3D 417 Temporary delivery error
SMTP-Server =3D mx4.hotmail.com.

[PeekTime] 1110538397 : Fri, 11 Mar 2005 07:53:17 -0300

ErrCode   =3D -162
ErrString =3D 

[xmail] Re: Problems with hotmail.com

2005-03-11 Thread Bill Healy
Does xmail always fail sending to hotmail or just some of the time? If
just some of the time then try several manual telnet sessions at
different times and see if you get the same results.

Bill


--
From:  [EMAIL PROTECTED]:[EMAIL PROTECTED]
Sent:  Friday, March 11, 2005 9:22 AM
To:xmail@xmailserver.org
Subject:   [xmail] Re: Problems with hotmail.com

Davide, I think that hotmail hired a new Italian postmaster recently because
something is strange with this problem... ;)

Below a manually telnet session made directly from xmail server machine to
hotmail:

220 MC6-F18.hotmail.com Sending unsolicited commercial or bulk e-mail to
Microso
ft's computer network is prohibited. Other restrictions are found at
http://priv
acy.msn.com/Anti-spam/. Violations will result in use of equipment located in
Ca
lifornia and other states. Fri, 11 Mar 2005 09:11:22 -0800
250 MC6-F18.hotmail.com (3.0.1.18) Hello [200.231.29.16]
250 [EMAIL PROTECTED] OK
250 [EMAIL PROTECTED]
354 Start mail input; end with CRLF.CRLF
250 [EMAIL PROTECTED] Queued mail for
delivery

Thank you

Edinilson

-Mensagem original-
From: Davide Libenzi davidel@xmailserver.org
Date: Fri, 11 Mar 2005 12:37:06 -0300
To: XMail mailing list xmail@xmailserver.org
Subject: [xmail] Re: Problems with hotmail.com

 On Fri, 11 Mar 2005 edinilson@atinet.com.br wrote:
 
  [PeekTime] 1110537048 : Fri, 11 Mar 2005 07:30:48 -0300
  
  ErrCode   = -162
  ErrString = End of socket stream data
  SMAIL SMTP-Send MX = mx1.hotmail.com. SMTP = mailserver From =
[EMAIL PROTECTED] To = [EMAIL PROTECTED] Failed !
  SMTP-Error = 417 Temporary delivery error
  SMTP-Server = mx1.hotmail.com.
  
  
  ErrCode   = -232
  ErrString = Error connecting to remote address
  SMAIL SMTP-Send MX = mx3.hotmail.com. SMTP = mailserver From =
[EMAIL PROTECTED] To = [EMAIL PROTECTED] Failed !
  SMTP-Error = 417 Temporary delivery error
  SMTP-Server = mx3.hotmail.com.
  
 
 The connection does not even born, or it is rejected soon after 
 establishment. Try to run a telnet SMTP session manually, from inside your 
 net first, and from another net in your area (if you can). Maybe Hotmail's 
 postmaster is an Italian and does not like Brazil since they have more 
 World Cup than we do ;)
 
 
 - 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]



[xmail] Re: CPU use with 1.21

2005-01-19 Thread Bill Healy
Do you have a virus scanner that could be locking or moving the files if
infected?

Bill

--
From:  Sergio Perrone[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, January 19, 2005 12:34 PM
To:xmail@xmailserver.org
Subject:   [xmail] Re: CPU use with 1.21


Please, Davide:

Remember my problem on Xmail 1.21 over W2000 (mail RE: problem with=20
spool file; 12/30/2004):
my spool structure shows spool errors in the Event Manager regulary (a=20
few per day). The server works, and the file system is REALLY OK.

An example:
 ...
ErrCode   =3D -56
ErrString =3D Invalid spool file
Unable to load spool file=20
\\?\f:\mailroot\spool\14\20\mess\1105820563391.2044.3e.apolo.rej
SMTP-Error =3D 554 Error loading spool file
 ... 

Is the problem the .rej ?
The documentation refers .rej as the extension of a file response =
with=20
filters processing, and I=B4m not using them (I mean a .rej file; I =
use=20
filters, of course).

Sergio Perrone

Davide Libenzi wrote:

// ...
Please do that. If you guys do not send thos info, I cannot debug=20
problems. And they'll come back biting you later ...



- Davide
... //
 =20



-
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: relay for one external mailadress possible?

2004-12-19 Thread Bill Healy
Authenticated users can relay by default, have you changed something to
make this not possible?

Bill

--
From:  [EMAIL PROTECTED]:[EMAIL PROTECTED]
Sent:  Sunday, December 19, 2004 1:28 PM
To:Mike Harrington
Subject:   [xmail] Re: relay for one external mailadress possible?

The later.

I want one external user to be abe to relay through the server..

-Christian
MH Do you want to process the email from one external account, or do you
want
MH one external user to be able to relay through the server?

MH -Mike

MH - Original Message - 
MH From: [EMAIL PROTECTED]
MH To: [EMAIL PROTECTED]
MH Sent: Sunday, December 19, 2004 11:44 AM
MH Subject: [xmail] relay for one external mailadress possible?


 Hello.

 If i wanted to let one external mailaccount relay
 through my xmailserver, where can i easiest config this then?

 Maybe custdomains?

 This should not be to hard to solve but for the moment
 i am out of ideas...

 Happy holidays to you all!

 Br,
 Christian Otrel

 -
 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]



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



-- 
Best regards,
 comailto:[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: Outlook error 0x800CCC0F

2004-12-16 Thread Bill Healy
Maybe the problem is how McAfee proxy handles the transfer with xMail,
it might be very slow for some reason.

Someone should look into how well McAfee and xMail talk to each
other. h who could we ask to do that, Davide?? ;)

Bill


--
From:  Javier Navarro[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, December 16, 2004 8:14 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Outlook error 0x800CCC0F


  Hello

  First of all, thanks for the answers but I think it's a little more=
 complicated than it seems.

  About antivirus filter in server, I know it doesn't affect POP sessions.=
 I told that I use it just to give a complete description of my system.

  In my tests, I used Outlook and Calypso with Nod32 active. Outlook failed=
 while Calypso downloaded the e-mail. But I suppose Nod32 is better=
 integrated with Outlook than Calypso (that is an old e-mail client).

  My client uses McAfee ASAP but he hasn't problems if the same e-mail is=
 downloaded from other server. In fact, he had to tell the sender to send=
 the e-mail to other acount in other server to be able to download it.

  So the problem is very strange:

  1.- Outlook + McAfee ASAP can't download an e-mail from XMail but it can=
 from other server.
  2.- Outlook + Nod32 can't download the e-mail from XMail but Calypso +=
 Nod32 can.

  (1) Is very dificult to explain as an Outlook + Antivirus problem . And I=
 think I can't tell my client to use other e-mail software because he will=
 tell me he hasn't this problems with other servers :-(

  Any suggestions?

  Thanks all :-)

  Javier

*** Mensaje original  ***

El d=EDa 16/12/2004 a las 15:21 CLEMENT Francis escribi=F3:

Hello Javier


IMOO this is not directly a outlook problem

I have regulary the same problem with some of my customers for large =3D
emails
and with anti-virus software scanning incoming mail with outlook on =3D
they
computer. The problem appears more quickly with low connexions (rtc =3D
) or
slow client computers

Does the client pc have a anti-virus ?
And is the av software act as a 'proxy' for the pop3 (and/or smtp) =3D
localy
(like norton av, don't know yet for trend, mcfee, ... but many use this
method to filter incoming and outcoming mails) ?
As many of these av scan incoming mail using a local 'proxy' server, =3D
from
the xmail server point of view the real client IS the av software, not
directly outlook, and for outlook the server IS the local AV, not the =3D
xmail
server ...
and with large attachments, for some unknow reasons (internal to the av=
 =3D
?),
the av does not regulary send data to outlook (or to the server ? or =3D
both ?)
 and finally outlook (and/or the server) thinks there is a problem =3D


Last norton av seems to have a option to help (don't remember label of =3D
this
option but search in mail options, a sort of 'keep alive')

Don't really know if the problem is with all av with outlook, or some =3D
av
with outlook, or some av with any mua ...

Finally try update your av to last version (engine and software, not =3D
only
virus databases !!!)

Francis


 -Message d'origine-
 De : Javier Navarro [mailto:[EMAIL PROTECTED]
 Envoy=3DE9 : jeudi 16 d=3DE9cembre 2004 14:00
 =3DC0 : [EMAIL PROTECTED]
 Objet : [xmail] Outlook error 0x800CCC0F
=3D20
=3D20
   Hi,
   We are having some problems with XMail + Outlook + Big e-mails.
=3D20
   When they try to download e-mails with big attachments (4=3D20
 MB or so) Outlook returns this error:=3D20
=3D20
 Your server has unexpectedly terminated the connection.=3D20
 Possible causes for this include server problems, network=3D20
 problems, or a long period of inactivity. Account. account=3D20
 name, Server: server name, Protocol: POP3, Port: 110,=3D20
 Secure(SSL): N0, Error Number: 0x800ccc0f
=3D20
   I have tested the same account and e-mail with Outlook and=3D20
 Calypso e-mail clients. Same configuration. I have set=3D20
 Server timeout to 5 minutes in outlook. Calypso downloads=3D20
 the e-mail (slowlier than usual). Outlook fails.
=3D20
   I have XMail 1.20 on W2K + Jason J Ellingson AV Filter +=3D20
 F-Prot for DOS.
=3D20
   Any ideas?
=3D20
   Best regards,
=3D20
   Javier Navarro
=3D20
=3D20
 -
 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]
=3D20
-
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]


*** Fin del mensaje original  ***

-
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 

[xmail] Re: Remote User Add

2004-11-22 Thread Bill Healy
You can run CtrlClnt from any computer that can reach the xmail server.
You specify the address of the xmail server with -s server address on
the CtrlClnt command line.

Bill


--
From:  Bryan Catlin[SMTP:[EMAIL PROTECTED]
Sent:  Saturday, November 20, 2004 6:59 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Remote User Add

Well I need to do this from another server, so I was thinking a http post or
something.  If I could get some kind of return value that would be nice to
know if it succeeded.  Any more ideas?

Thanks though :)
Bryan

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Shawn Anderson
Sent: Saturday, November 20, 2004 9:34 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Remote User Add


You could use a script/batch file/etc that called the ctrlclnt
application.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Bryan Catlin
Sent: Saturday, November 20, 2004 9:29 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Remote User Add

It's been awhile since I had to do anything on our xmail server and now we
are setting up automatic provisioning from our billing software, and I'm
wondering how could I get it to setup or add new user email accounts
automatically?

I am running both the billing and xmail on separate windows 2000 advanced
servers

Best Regards,

Bryan Catlin

-
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: [***SPAM*** Score/Req: 05.40/04.00] Re: Use a SMTP Gateway only for undeliverable messages

2004-10-15 Thread Bill Healy
Why not all?

--
From:  Marc Mauri[SMTP:[EMAIL PROTECTED]
Sent:  Friday, October 15, 2004 9:11 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: [***SPAM*** Score/Req: 05.40/04.00] Re: Use a SMTP
Gateway only for undeliverable messages

Hi Sonke,
I saw it, but check the explanation:

[DefaultSMTPGateways]
A comma separated list of SMTP servers XMail 'must' use to send its
mails. This has the precedence over MX records.


I want to route to SMTP Gateway only undeliverable meesages, not all...

Can it be done?

-Mensaje original-
De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
nombre de Sonke Ruempler
Enviado el: viernes, 15 de octubre de 2004 13:31
Para: [EMAIL PROTECTED]
Asunto: [***SPAM*** Score/Req: 05.40/04.00] [xmail] Re: Use a SMTP
Gateway only for undeliverable messages


[EMAIL PROTECTED]  wrote on Friday, October 15, 2004 10:11 AM:

 This is because, indeed I have a static IP, they mark it as dynamic at
 Reverse DNS, then Mail servers using dnsbl block my MTA, so a
 gateway must
 be used. (i.e. i can't send a message to xmalserver.org through MX
 resolution)

 Can this be done with XMail?

check http://www.xmailserver.org/Readme.html#server_tab_variables

[DefaultSMTPGateways]
A comma separated list of SMTP servers XMail 'must' use to send its
mails. This has the precedence over MX records.

-
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: Imap

2004-09-17 Thread Bill Healy
Not long after Davide finishes it and tests it.

--
From:  Chris L. Franklin[SMTP:[EMAIL PROTECTED]
Sent:  Friday, September 17, 2004 7:06 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Imap

Not to sound like a broken record but .
any idea when might xmail w/ imap might be coming out ?


-- 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] Re: Xmailserve log

2004-09-17 Thread Bill Healy
The second letter in each of the logging switches is a small L not 1
(one), is that what you have?

Bill

--
From:  kalinga[SMTP:[EMAIL PROTECTED]
Sent:  Friday, September 17, 2004 7:53 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Xmailserve log

http://www.mail-archive.com/[EMAIL PROTECTED]/msg00010.html

as specified in the above URL, i did the change in my xmail startup script
and restarted xmail, but it did not create any log files in $MailRoot/logs.

please push me an URL or doc on this loging thing. 


-- 
vk.
-
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: Xm-spf.pl

2004-08-20 Thread Bill Healy
Hi Ken,

Do you have real tabs between fields?
Where is your sm-spf.tab file located? 
Where are the filters.in.tab and filters.out.tab located?

I haven't used the SPF filter, so these are just generic questions.

Bill

--
From:  Ken Larkman[SMTP:[EMAIL PROTECTED]
Sent:  Friday, August 20, 2004 11:47 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Xm-spf.pl

Having a challenge getting SPF to work on Xmail 1.20 on Fedora Core 2.
My xm-spf.tab is as follows:

/var/MailRoot/bin/xm-spf.pl   --file@@FILE

.. and my filters.in.tab and filters.out.tab include the following line:

* * 0.0.0.0/0 0.0.0.0/0 xm-spf.tab

This does not seem to be working and no headers are being added to
emails.

Any thoughts?

Thanks,

- Ken


-
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: Odd things happening with StrWildMatch

2004-08-18 Thread Bill Healy
I can see how all those would match, why don't you think so?

Here's the first one you thought shouldn't match broken down
210-20-54-173.rev.home.ne.jp matched pattern *-*-*-*.home.ne.jp
* matches 210
- matches -
* matches 20
- matches -
* matches 54
- matches -
* matches 173.rev
..home.ne.jp matches .home.ne.jp

Bill


--
From:  Tracy[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, August 18, 2004 7:06 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Odd things happening with StrWildMatch


I know Davide is gone and all, but this was kind of weird and I wanted to 
see if anyone else had noticed it.

I've made a couple of custom mods to the xmail source code so that I can 
block on RDNS patterns (as well as MAIL FROM patterns). However, none of my 
modifications touched any of the string routine code (it was all in the 
SMTPSvr code).

So, I've been merrily adding RDNS patterns for blocking purposes, and my 
file is getting pretty good sized, so I start wondering if there are 
duplicate patterns in there somewhere (by duplicate patterns, I mean 
patterns which are not identical, but which would catch the same domain
names).

So, I wrote a little program that parses the headers of emails that have 
been rejected due to RDNS pattern matching, and it scans against the same 
pattern list that xmail is, and reports which patterns were matched by any 
particular RDNS. This was accomplished by pulling the code from 
StrWildMatch out of xmail, putting it in a DLL, and calling it from my own 
code.

And I'm noticing some odd occurances, things I can't explain (I'm *way* not 
a C++ guy, and I get lost in the pointer jungle in StrWildMatch). I've got 
things that appear to be matching multiple patterns, but from my 
understanding of the way the matching works, they should not match both 
patterns. I've included some examples below.

Has anyone else seen similar things? Or perhaps someone has looked at the 
StrWildMatch code and had a better understanding than I have and can tell 
me where I'm going wrong here?

Thanks for any suggestions. If I don't find an answer before then, I'll 
mention it again when Davide gets back.

 Samples of multiple matches 
(second match is expected, but not first)
210-20-54-173.rev.home.ne.jp matched pattern *-*-*-*.home.ne.jp
210-20-54-173.rev.home.ne.jp matched pattern *-*-*-*.rev.home.ne.jp

(first match is expected, but not second)
adsl-64-167-79-69.dsl.lsan03.pacbell.net matched pattern *.dsl.*.pacbell.net
adsl-64-167-79-69.dsl.lsan03.pacbell.net matched pattern adsl*.*.pacbell.net

(first match is expected, but not second)
chello080108085161.2.11.vie.surfer.at matched pattern chello*.*.*.*.surfer.at
chello080108085161.2.11.vie.surfer.at matched pattern chello*.*.surfer.at

(second match is expected, but not first)
lsanca2-ar37-4-62-192-032.lsanca2.dsl-verizon.net matched pattern 
*-*-*-*-*-*.dsl-verizon.net
lsanca2-ar37-4-62-192-032.lsanca2.dsl-verizon.net matched pattern 
*.*.dsl-verizon.net

(first match is expected,. but not second)
modemcable036.209-131-66.mc.videotron.ca matched pattern *.*.mc.videotron.ca
modemcable036.209-131-66.mc.videotron.ca matched pattern *.mc.videotron.ca

-
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: IP Address notation in configuration files

2004-07-17 Thread Bill Healy
What limits? Any valid mask you can specify with a mask can be specified
with the shorthand form.

Bill


--
From:  Mike Harrington[SMTP:[EMAIL PROTECTED]
Sent:  Friday, July 16, 2004 10:45 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] IP Address notation in configuration files

Hi,

This is for Davide or anyone else who can give me a reason.  Why do some
configuration files use a standard subnet mask when setting up a block of IP
addresses (e.g. 123.123.123.0 [TAB] 255.255.255.0) and others require
you to use the shorthand notation (e.g. 123.123.123.0/24).  Considering
the obvious limits with the shorthand notation, I would think requiring an
IP address with a seperate subnet mask throughout the configuration files
would be a much better way to go.

-Mike

-
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: Relaying

2004-07-15 Thread Bill Healy
Describe what you are seeing that makes you think it is relaying.

Bill

--
From:  Jeffrey L. Conley[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, July 14, 2004 1:28 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Relaying

I am running 1.18 on both my primary and my secondary.  I have the same
exact smtprelay.tab file on both servers.  My primary does not relay but no
matter what I do my secondary relays everything.





-
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: A decent anti-spam solution for XMAIL

2004-07-15 Thread Bill Healy
Check out http://assp.sourceforge.net/ 
Haven't used it but looks like what you want for a port 25 proxy.

Bill

--
From:  Noor Dawod[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, July 15, 2004 1:54 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] A decent anti-spam solution for XMAIL

Hello,

I am looking for a good solution for anti-spam that plugs into XMAIL. I
know there are many Perl and Python solutions, but I am looking for a
solution with C/C++ code that compiles into a .DLL or .EXE executable,
with no 3rd party shells.

Actually, the best would be a solution that can listen to port 25,
receive the incoming/outgoing message, and if it passes few checks, like
a Bayesian threshold, it'll forward it to the real XMAIL SMTP server for
delivery.

Any idea if there is such a solution available and for a decent price?

Thanks.

/Noor


-
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: X-Deliver-To problem

2004-07-15 Thread Bill Healy
Do you have read TAB characters between each of the e-mail addresses in
your redirects?
Have you tried multiple redirect lines with one address per line?

Bill

--
From:  Kaan Ert=FCrk[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, July 15, 2004 1:23 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: X-Deliver-To problem

Hi,
here I will give all the config and mailprog details.

I have 14 users and postmaster itself. Users are:
11, 13, 14, 16, 17, ae, bt, fe, ig, mail, merkez, na, servis, tk and
postmaster.
The first 5 users are the main users that read mails internally. Others =
are
both
real pop accounts and virtual accounts on the external domain. =
postmaster has
5 pop
accounts which syncs mails from external domain and delivers them to =
ae, ig,
mail,
merkez and servis. The rest (bt, fe, na, tk) are virtual. I mean, they =
are
not
created but the main account on the external domain collects them as
catch-all.
After syncing with external pops ae, bt, fe, ig, mail, merkez, na, =
servis and
tk
get mails and redirects to other users (11, 13, 14, 16, 17) by =
mailproc.tab
files.

Here are the mailproc.tab files of accounts:

merkez:
redirect [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]
 =
[EMAIL PROTECTED]
[EMAIL PROTECTED]

mail:
redirect [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]

servis:
redirect [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]

ae:
redirect [EMAIL PROTECTED]

ig:
redirect [EMAIL PROTECTED]

bt:
redirect [EMAIL PROTECTED] [EMAIL PROTECTED]

na:
redirect [EMAIL PROTECTED] [EMAIL PROTECTED]

tk:
redirect [EMAIL PROTECTED] [EMAIL PROTECTED]

fe:
redirect [EMAIL PROTECTED] [EMAIL PROTECTED]

postmaster: (to deliver all other mails to 13)
mailbox
redirect [EMAIL PROTECTED]

My internal domain is tuzeks.int. External is tuzeks.com.tr.

Here is my pop3links.tab file:
?tuzeks.int,tuzeks.com.trpostmastermail.tuzeks.com.tr
[EMAIL PROTECTED]ENCRYPTED_PASSWORDCLR
?tuzeks.int,tuzeks.com.trpostmastermail.tuzeks.com.tr=
[EMAIL PROTECTED]
tr
ENCRYPTED_PASSWORD   CLR
?tuzeks.int,tuzeks.com.trpostmastermail.tuzeks.com.tr
[EMAIL PROTECTED]ENCRYPTED_PASSWORDCLR
?tuzeks.int,tuzeks.com.trpostmastermail.tuzeks.com.tr=
[EMAIL PROTECTED]
m.tr
ENCRYPTED_PASSWORD   CLR
?tuzeks.int,tuzeks.com.trpostmastermail.tuzeks.com.tr=
[EMAIL PROTECTED]
tr
ENCRYPTED_PASSWORD   CLR

And I am also attaching my server.tab file.. I think that's all I can =
send
about my
configuration.

As I said, the problem is that when I send a mail with only one address =
in To
header, it delivers correct. But when I send a mail with 2 or more =
addresses
in To
header, the mail delivers more than 1 to the same mailbox.

Thanks,
Kaan Ert=FCrk


   =09
__
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail=20

-- Binary/unsupported file stripped by Ecartis --
-- Type: application/octet-stream
-- File: server.tab
-- Desc: server.tab


-
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: Relaying

2004-07-15 Thread Bill Healy
What's in your smtprelay.tab file on the secondary MX server?
Was the domain of the To: address defined on the secondary MX server?
How have you defined the domains you want it to be secondary for?

Bill

--
From:  Jeffrey L. Conley[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, July 15, 2004 10:30 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Relaying



Yesterday I was able to relay email off of it from across the internet.  =
I
was not using a valid email address and no authintication. =20


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of Bill Healy
Sent: Thursday, July 15, 2004 1:15 PM
To: '[EMAIL PROTECTED]'
Subject: [xmail] Re: Relaying

Describe what you are seeing that makes you think it is relaying.

Bill

--
From: Jeffrey L. Conley[SMTP:[EMAIL PROTECTED]
Sent: Wednesday, July 14, 2004 1:28 PM
To:   [EMAIL PROTECTED]
Subject:  [xmail] Relaying

I am running 1.18 on both my primary and my secondary.  I have the same
exact smtprelay.tab file on both servers.  My primary does not relay =
but no
matter what I do my secondary relays everything.





-
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: email to mailing list delivered several times

2004-06-22 Thread Bill Healy
Roman,

Does the duplication always happen?
Have you tried creating a test mailing list with just a few addresses to
see if the problem happens?

Bill

--
From:  Roman Dusek[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, June 22, 2004 12:23 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: email to mailing list delivered several times

At 19:14 21.6.2004, you wrote:
On Mon, 21 Jun 2004, Roman Dusek wrote:

  Davide,
 
  is there anything I can do to help to find the source of these problems?

Are you sure that you don't have duplicated users in the mailing list
file?

No duplicates - I have just checked again.

Or that you don't have redirect or aliasing of certain users that
leads to the same one?

All mailing list users are external. XMail has pretty *basic* 
configuration, means no aliasing etc.

Would it help if I send you all the XMail directory for analysis? Or maybe 
XMail directory including spool grabbed in the moment the situation would 
happen again?

Thanks,
Roman

Other than that, I have no clue.



- 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]



[xmail] Question about spool file format change in 1.14

2004-05-29 Thread Bill Healy
Hi,

I'm upgrading an old Win32 server that's still on 1.7 to 1.18, what if
anything do I have to do to the spool files that are still in the old
format so that they will work with 1.18? I'm referring to all mail
files, those waiting to be delivered in the spool directories and the
mail in the domain user directories. 

Hints and tips would be appreciated.

Thanks,
 Bill


-
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: Question about spool file format change in 1.14

2004-05-29 Thread Bill Healy
Thanks Davide,

I actually left out that the new xmail is going on a new computer as
well. So it sounds like I can just move the domain directory over to the
new machine and leave the old server running for awhile on another
address so the spools can flush on their own.

How soon for 1.19? This weekend? If so it's a good excuse to put off the
upgrade and go outside and play! ;)

Bill

--
From:  Davide Libenzi[SMTP:[EMAIL PROTECTED]
Sent:  Saturday, May 29, 2004 4:10 PM
To:'[EMAIL PROTECTED]'
Subject:   [xmail] Re: Question about spool file format change in 1.14

On Sat, 29 May 2004, Bill Healy wrote:

 Hi,
 
 I'm upgrading an old Win32 server that's still on 1.7 to 1.18, what if
 anything do I have to do to the spool files that are still in the old
 format so that they will work with 1.18? I'm referring to all mail
 files, those waiting to be delivered in the spool directories and the
 mail in the domain user directories. 
 
 Hints and tips would be appreciated.

I will be making 1.19 soon, in case you'd like to wait. Anyway, either you 
do some scripting to add the new line, or, better, you move the old server 
on another MAIL_ROOT and you bind it on different ports by letting it 
flush the old spool. Meanwhile you install the new one. The domains 
directory can be copied as-is, since nothing changed in it.



- 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: subject line

2004-05-24 Thread Bill Healy
Use the built-in file search of windows and use the feature to search
for files containing the text you are looking for.
Also browse to the folder your messages are in so you don't search the
complete drive.

Bill

--
From:  TheBatchFile.Com[SMTP:[EMAIL PROTECTED]
Sent:  Monday, May 24, 2004 8:59 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: subject line

I forgot to mention that this is xmail 1.17 on win2k

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of S=F6nke Ruempler
Sent: Monday, May 24, 2004 10:47 AM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: subject line


 Yes thats true for all that you said.. I just have a hard time
 tracking down old emails sometimes. Time consuming.

grep is your friend :)


-
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: SMTP Auth

2004-05-12 Thread Bill Healy
If your users are on an internal LAN put that address range in the
smtprelay.tab file. You don't want to turn off authentication completely
or you will have an open relay on the Internet. 

Bill

--
From:  Xat[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, May 12, 2004 7:08 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] SMTP Auth

   Hi all!
   How to turn off SMTP authentication for the domain users?
This authentication is forced in SMTPSERVER.TAB by
EnableAuthSMTP-POP3 variable. This means that domain users 
can send their mail only after POP3 authentication. When setting
this variable to zero, all mail is rejected by server.

What should be changed to allow users to send their mail without
preliminary POP3 authentication?

Davidchenko Roman.
-
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: Mail loop detected - Can't seem to find the problem.

2004-05-12 Thread Bill Healy
You have an A record that points back to yourself
bioenergy.com.  3580IN  A   207.67.28.220

Don't know why xmail is giving preference to the A record when an MX
record exists. Interesting
bioenergy.com.  3529IN  MX  10 64.122.83.163.

Bill


--
From:  John Kielkopf[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, May 12, 2004 7:56 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Mail loop detected - Can't seem to find the problem.

Getting a Mail loop detected on a domain we host on our DNS server, 
and on our web servers, be do not host the mail (MX record points to 
customers server).

This only happens on mail being sent from our mail server. The 
destination domain is not handled by our mail servers (no domain alias, 
no custom domain, no domain entry, and the DNS records appear to be 
correct).  This seemed to start after changing to 1.18... I haven't gone 
back to 1.17 to test though.

-John

(rejection message below: users modified to ):

[00] XMail bounce: [EMAIL PROTECTED];Error=[Mail loop detected]


[01] Error sending message [1083538241496.2332.ns1] from
[smtp1.mnwebhost.net].

ID:S1306D9
Mail From: [EMAIL PROTECTED]
Rcpt To:   [EMAIL PROTECTED]


[02] The reason of the delivery failure was:

Mail loop detected


[04] Here is listed the message log file:

[PeekTime] 1083538122 : Sun, 2 May 2004 17:48:42 -0500

ErrCode   = -173
ErrString = Mail loop detected
Message S1306D9 blocked by mail loop check !
SMTP-Error = 554 Message blocked by mail loop check






[05] Here is listed the initial part of the message:

Received: from smtp1.mnwebhost.net (207.67.28.220:3999)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306D9 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:26 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3955)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306D6 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:12 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3917)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306D4 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:11 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3869)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306D2 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:08 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3838)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306D0 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:07 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3805)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306CF for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:05 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3787)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306CE for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:03 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3763)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306CD for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:02 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3752)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306CC for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:01 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3742)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306CB for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:48:00 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3732)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306CA for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:47:59 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3720)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306C9 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:47:58 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3707)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306C7 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:47:57 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3696)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306C6 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:47:56 -0500
Received: from smtp1.mnwebhost.net (207.67.28.220:3684)
   by mnwebhost.net with [XMail 1.18 (Win32/Ix86) ESMTP Server]
   id S1306C4 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
   Sun, 2 May 2004 17:47:55 

[xmail] Re: Mail loop detected - Can't seem to find the problem.

2004-05-12 Thread Bill Healy
Understood, but why didn't xmail find the MX record? Sounds like it's
not an intermittent problem and the dns server is right there near the
xmail server I'm guessing.

Bill

--
From:  Davide Libenzi[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, May 12, 2004 9:48 AM
To:'[EMAIL PROTECTED]'
Subject:   [xmail] Re: Mail loop detected - Can't seem to find the problem.

On Wed, 12 May 2004, Bill Healy wrote:

 You have an A record that points back to yourself
 bioenergy.com.  3580IN  A   207.67.28.220
 
 Don't know why xmail is giving preference to the A record when an MX
 record exists. Interesting
 bioenergy.com.  3529IN  MX  10 64.122.83.163.

The A record lookup is the backup solution if the MX cannot be found.



- 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: R: relay denied

2004-05-03 Thread Bill Healy
How did you create the domain alias?

Bill

--
From:  Tom Svensson[SMTP:[EMAIL PROTECTED]
Sent:  Monday, May 03, 2004 7:08 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: R: relay denied

It's tab in the file, not space, but OE made it a space. :)

This is what I get when I do a MX verify
http://www.funet.fi/cgi-bin/[EMAIL PROTECTED]SUBMIT=SUBMIT+
FUNET.FI+NETWORK

220 [EMAIL PROTECTED] [XMail 1.18 (Win32/Ix86) ESMTP Server]
service ready; Mon, 3 May 2004 15:32:18 +0200
 HELO nic.funet.fi
 250 e-butik.se
 MAIL FROM:
 250 OK
 RCPT TO:[EMAIL PROTECTED]
 550 Relay denied


This is how I set up the account.

vette.e-butik.se is the main domain for this account. vette.se is a domain
alias for vette.e-butik.se.

MX for vette.e-butik.se and vette.se _should_ point to 213.136.36.3.

It works if I add a new domain vette.se (without the
domainalias.e-butik.se-thing). :-/


I have the smtprelay.tab configured as follows
213.136.36.0 255.255.255.0
213.136.35.0 255.255.255.0
192.168.1.0 255.255.255.0
127.0.0.1 255.255.255.0

To allow computers in the network send email via mail.e-butik.se, that's
correct eh?

Any ideas?

Thanks...
/Tom S.


- Original Message -
From: Sergio Casagrande [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, May 03, 2004 3:25 PM
Subject: [xmail] R: relay denied


 The space between address and mask is space or tab?
 It have to be tab.
 May be.
 Bye.
 Sergio

 -Messaggio originale-
 Da: Tom Svensson [mailto:[EMAIL PROTECTED]
 Inviato: luned=EC 3 maggio 2004 12.28
 A: [EMAIL PROTECTED]
 Oggetto: [xmail] relay denied


 Hi!

 When I send email to an account on our server I get this in return.

  Reporting-MTA: dns; av7-2-sn2.hy.skanova.net
  Arrival-Date: Mon,  3 May 2004 11:21:41 +0200 (CEST)
 
  Final-Recipient: rfc822; [EMAIL PROTECTED]
  Action: failed
  Status: 5.0.0
  Diagnostic-Code: X-Postfix; host mail.vette.se[213.136.36.3] said: 550
 Relay
  denied (in reply to RCPT TO command)

 I send via an external mail server.

 smtprelay.tab
 213.136.36.0 255.255.255.0
 213.136.35.0 255.255.255.0
 192.168.1.0 255.255.255.0
 127.0.0.1 255.255.255.0

 Any ideas?

 /Tom S.

 -
 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: R: relay denied

2004-05-03 Thread Bill Healy
Try stopping xmail, empty the tabindex directory and restart xmail.
If that doesn't work try removing the domain alias and re-add it with
wai.

Bill

--
From:  Tom Svensson[SMTP:[EMAIL PROTECTED]
Sent:  Monday, May 03, 2004 10:26 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: R: relay denied

I created the domain alias for our domains via WAI like a year ago.

Last week I installed xmail on a new server (213.136.36.3), copied all
domains-directories as well as the domains.tab, domainalias.tab to the new
server, and started to change MX for all of our domains to the new IP. The
problem occur when I try to send a mail _to_ an account on the new server,
for which the MX has the new IP 213.136.36.3. One of the accounts is
[EMAIL PROTECTED] and when I send an email to that address, I get the email in
return with this message.

 Reporting-MTA: dns; av6-2-sn2.hy.skanova.net
 Arrival-Date: Mon,  3 May 2004 16:38:05 +0200 (CEST)

 Final-Recipient: rfc822; [EMAIL PROTECTED]
 Action: failed
 Status: 5.0.0
 Diagnostic-Code: X-Postfix; host mail.vette.se[213.136.36.3] said: 550
Relay
 denied (in reply to RCPT TO command)



My own domain tomsvensson.com works fine on the new server, but it is no
domain alias under the *.e-butik.se on the other hand...

Any ideas are very appreciated...

Thanks,
Tom S.



 How did you create the domain alias?

 Bill

 It's tab in the file, not space, but OE made it a space. :)
 
 This is what I get when I do a MX verify

http://www.funet.fi/cgi-bin/[EMAIL PROTECTED]SUBMIT=SUBMIT
+
 FUNET.FI+NETWORK
 
 220 [EMAIL PROTECTED] [XMail 1.18 (Win32/Ix86) ESMTP Server]
 service ready; Mon, 3 May 2004 15:32:18 +0200
  HELO nic.funet.fi
  250 e-butik.se
  MAIL FROM:
  250 OK
  RCPT TO:[EMAIL PROTECTED]
  550 Relay denied
 
 
 This is how I set up the account.
 
 vette.e-butik.se is the main domain for this account. vette.se is a
domain
 alias for vette.e-butik.se.
 
 MX for vette.e-butik.se and vette.se _should_ point to 213.136.36.3.
 
 It works if I add a new domain vette.se (without the
 domainalias.e-butik.se-thing). :-/
 
 
 I have the smtprelay.tab configured as follows
 213.136.36.0 255.255.255.0
 213.136.35.0 255.255.255.0
 192.168.1.0 255.255.255.0
 127.0.0.1 255.255.255.0
 
 To allow computers in the network send email via mail.e-butik.se, that's
 correct eh?
 
 Any ideas?
 
 Thanks...
 /Tom S.
 
 
 - Original Message -
 From: Sergio Casagrande [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, May 03, 2004 3:25 PM
 Subject: [xmail] R: relay denied
 
 
  The space between address and mask is space or tab?
  It have to be tab.
  May be.
  Bye.
  Sergio
 
  -Messaggio originale-
  Da: Tom Svensson [mailto:[EMAIL PROTECTED]
  Inviato: luned=EC 3 maggio 2004 12.28
  A: [EMAIL PROTECTED]
  Oggetto: [xmail] relay denied
 
 
  Hi!
 
  When I send email to an account on our server I get this in return.
 
   Reporting-MTA: dns; av7-2-sn2.hy.skanova.net
   Arrival-Date: Mon,  3 May 2004 11:21:41 +0200 (CEST)
  
   Final-Recipient: rfc822; [EMAIL PROTECTED]
   Action: failed
   Status: 5.0.0
   Diagnostic-Code: X-Postfix; host mail.vette.se[213.136.36.3] said:
550
  Relay
   denied (in reply to RCPT TO command)
 
  I send via an external mail server.
 
  smtprelay.tab
  213.136.36.0 255.255.255.0
  213.136.35.0 255.255.255.0
  192.168.1.0 255.255.255.0
  127.0.0.1 255.255.255.0
 
  Any ideas?
 
  /Tom S.


-
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: Attachments getting truncated

2004-04-23 Thread Bill Healy
Mike,

Do you have ANY filters running at all? No matter how insignificant it's
function might be.
What version of xmail are you using on what OS?
What configuration changes have you made from the default settings?
Are you using any add-on webmail or other programs?
What e-mail client are you using? What is the sender using? 
For that matter what e-mail server are they using?
Is the problem only occurring from one person or from one domain? Or is
it happening from several sources?
Can the problem be reproduced with the same attachment every time?
How do you know the attachment is getting damaged? What is the test?
Have you scanned your server and workstation for viruses?

Hopefully the answers to these questions will help us point you in the
right direction to solve your issue.

Bill

--
From:  Mike Bremford[SMTP:[EMAIL PROTECTED]
Sent:  Friday, April 23, 2004 8:01 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Attachments getting truncated

I know it sounds unlikely, but all I know is what I'm seeing. Previously 
I ran exim for four years without a hitch, and now I'm losing roughly an 
email a week.

If you say that I'm the only one to report it then it must be a problem 
with my setup somewhere, but as I don't know what it is and you don't 
seem to have any ideas either, I guess I'll hunt around for another 
solution.

Cheers... Mike
--

Mike Bremford - CTO[EMAIL PROTECTED]
Big Faceless Organizationhttp://big.faceless.org


Davide Libenzi wrote:
 On Fri, 23 Apr 2004, Mike Bremford wrote:
 
 
I've been running xmail for a few months now, and sinced I switched to
it I've noticed the number of corrupt attachments has gone up sharply.
Basically they're getting truncated - not every time, but enough of them
to make life difficult. This seems to happen mainly with larger ones
(1.5Mb or so).

Our setup is fairly standard - for a while I was running the
spamassassin filter but removed that to see if that was the trouble (it
wasn't).
 
 
 XMail does not do anything with attachments. As a matter of fact, it 
 doesn't even know the notion of attachments. The only thing that parses 
 (and note that I said parses) are RFC822 headers. If the message results 
 corrupted, if the message entered XMail sane, and if XMail correctly 
 accepted the message, only filters can demage it. Bottom line is, do you 
 think that if XMail itself was chopping messages, your would have been the 
 only complain here?
 
 
 
 - 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]



[xmail] Re: Catch-All configuration for a domain

2004-04-02 Thread Bill Healy
What do you mean by global redirect for a domain? Can you give an
example?

Bill

--
From:  Noor Dawod[SMTP:[EMAIL PROTECTED]
Sent:  Friday, April 02, 2004 10:41 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Catch-All configuration for a domain

Hi,

OK, I've read the documentation about MAILPROC.TAB, and it looks that I
can do the redirection for a domain.
Another thing: I searched for a file named MAILPROC.TAB in all folders,
and haven't found any. Where do I put this file?

If I wish to activate global-redirect for a domain ''domain.name'', do I
put file MAILPROC.TAB in ~/domains/domain.name/ ?

Noor


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Davide Libenzi
Sent: Friday, April 02, 2004 7:27 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Catch-All configuration for a domain


On Fri, 2 Apr 2004, Noor Dawod wrote:

 Hi,
 
 I am migrating from a FreeBSD/Postfix configuration to Win32/XMAIL. 
 Current configuration include tens of domains, each with its special 
 needs and features.
 
 For the new XMAIL configuration, I cannot find yet a solution for 
 catch-all configuration. This is a per-domain configuration, and I 
 am unable to find the solution.
 
 In Postfix:
 
 [EMAIL PROTECTED][EMAIL PROTECTED]
 [EMAIL PROTECTED][EMAIL PROTECTED]
 [EMAIL PROTECTED][EMAIL PROTECTED]
 
 How can I do this in XMAIL?

A catch-all is one thing (see '*' alias), while a redirect (that you are

describing) is another thing (see mailproc.tab-redirect).



- 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]



[xmail] Re: Default Open Relay

2004-04-01 Thread Bill Healy
How about putting in smtprelay.tab all non-routable private subnets per
RFC or some kind of wildcard or special entry that matches the subnets
of all installed network cards in the xmail server?

For example, case 1:
smtprelay.tab
10.0.0.0/8
169.254.0.0/16 
172.16.0.0/12 
192.168.0.0/16 

or case 2:
smtprelay.tab
localsubnetsonly

hmm just found in http://www.faqs.org/rfcs/rfc3330.html that case 2
maybe should be 0.0.0.0/8 meaning Addresses in this block refer to
source hosts on this network.

Bill

--
From:  Davide Libenzi[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, March 30, 2004 11:02 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Default Open Relay

On Tue, 30 Mar 2004, Tim McGarvey wrote:

 I have to agree.  I'll admit this makes me an idiot, but my first
 installation I accumulated 40,000 bounces in my postmaster inbox between
 going home on the go-live date and coming in the next morning.  At the very
 least a note in the tab file saying WARNING, the default configuration is
 an open relay! or some such.  I know it's not smart, but I just never
 imagined that any mail servers defaults would be wide open nowadays.

Did you miss this is some way?

http://www.xmailserver.org/Readme.html#configuration

In particular the step that says 'THIS IS IMPORTANT'. The difference, 
giving for granted that user do not read the documentation, is that if I 
close the relay I will receive tons of email saying (subjects in random 
order):

I cannot send message through XMail ...
What does relay denied means ...
My server does not work, can you configure it for me ...

So basically I have to decide who pays. Myself being personally annoied 
with those cr*p, or ppl that does not read the doc and gets open relay. 
I'd better stick my the current setup, what do you think?



- 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: Default Open Relay

2004-04-01 Thread Bill Healy
Repeating this response since I didn't get a copy when I sent it this
morning.

--

How about putting in smtprelay.tab all non-routable private subnets per
RFC or some kind of wildcard or special entry that matches the subnets
of all installed network cards in the xmail server?

For example, case 1:
smtprelay.tab
10.0.0.0/8
169.254.0.0/16 
172.16.0.0/12 
192.168.0.0/16 

or case 2:
smtprelay.tab
localsubnetsonly

hmm just found in http://www.faqs.org/rfcs/rfc3330.html that case 2
maybe should be 0.0.0.0/8 meaning Addresses in this block refer to
source hosts on this network.

Bill


--
From:  Davide Libenzi[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, March 30, 2004 5:52 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Default Open Relay

On Wed, 31 Mar 2004, William Denniss wrote:

 why doesn't my xmail work is better than why am I listed in
 blacklists? (after sending thousands of spam emails) I feel.

For you maybe. It's me that I'll receive personal emails whining about 
missing capabilities :-/
(note that 70% of XMail users does *not* read the doc, so I prefer the 
subtle form of RTFM that is a default open relay)



- 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] Webmin

2004-04-01 Thread Bill Healy
Has anyone come across a webmin module for xmail?

Bill
-
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: possible to send message to user if his mailbox is full?

2004-03-23 Thread Bill Healy
Use the /spool/local feature of xmail to send the person a message. It
won't get refused if the user is over quota. But make sure you don't
keep sending the users notifications!

Bill

--
From:  Philipp Ringli[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, March 23, 2004 12:27 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] possible to send message to user if his mailbox is full?

does somebody know of a way to let a mail user know, when his/her 
mailbox is full?

why does xmail send back a message saying Unknown user: 
[EMAIL PROTECTED] if the mailbox of that user is full?


cheers,
phil

-
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: possible to send message to user if his mailbox is full?

2004-03-23 Thread Bill Healy
Phil phil phil..

Go to the docs and do a search for it, you'll find
http://www.xmailserver.org/Readme.html#xmail_local_mailer

Bill

ps. the filename can be anything, just make sure it's unique.

--
From:  Philipp Ringli[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, March 23, 2004 7:57 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: possible to send message to user if his mailbox is
full?

bill,

thanks!
i just don't quite know what that /spool/local feature is... mind 
explaining?

cheers,
phil


On 23.03.2004, at 16:42, Bill Healy wrote:

 Use the /spool/local feature of xmail to send the person a message. It
 won't get refused if the user is over quota. But make sure you don't
 keep sending the users notifications!

 Bill

 --
 From:   Philipp Ringli[SMTP:[EMAIL PROTECTED]
 Sent:   Tuesday, March 23, 2004 12:27 AM
 To: [EMAIL PROTECTED]
 Subject:[xmail] possible to send message to user if his mailbox is 
 full?

 does somebody know of a way to let a mail user know, when his/her
 mailbox is full?

 why does xmail send back a message saying Unknown user:
 [EMAIL PROTECTED] if the mailbox of that user is full?


 cheers,
 phil

 -
 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: XMAIL not returning undeliverable messages with Yahoo or Hotmail

2004-03-01 Thread Bill Healy
Do you have AllowNullSender disabled?

Bill

--
From:  Riaz Oosman[SMTP:[EMAIL PROTECTED]
Sent:  Monday, March 01, 2004 9:29 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] XMAIL not returning undeliverable messages with Yahoo or
Hotmail

Hi Guys,

When I send email to an invalid or mistyped yahoo.com or hotmail.com
account, I notice that XMAIL does NOT send me an undeliverable message.
There are some domains which I DO get undeliverable messages and some
that I DO NOT get undeliverable messages.

I purposely sent email to invalid yahoo and hotmail accounts through
another SMTP server and it DID send me undeliverable messages.

The only difference I can tell is that yahoo and hotmail give 550 Errors,
where as other domains give 511errors.
Has anyone else noticed this behavior?

Thanks.

Riaz...

-
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: receipts on Microsoft Outloook

2004-02-20 Thread Bill Healy
Make sure you don't have AllowNullSender disabled in your server.tab.

Bill

--
From:  Spyros Tsiolis[SMTP:[EMAIL PROTECTED]
Sent:  Friday, February 20, 2004 3:54 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] receipts on Microsoft Outloook

Hello people,

Would anyone know if there is way of making Microsoft Outlook receipts get 
through
Xmail ?

Looks like people are having trouble sending them.

TIA,
s.



-
I merely function as a channel that filters music through
the chaos of noise
- Vangelis

_
Add photos to your e-mail with MSN 8. Get 2 months FREE*. 
http://join.msn.com/?page=features/featuredemail

-
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: Hell error: 451 4.1.8 Domain of sender address test

2004-02-17 Thread Bill Healy
That's the A record, all he needs is MX.

Looks like the problem is with the name servers, ns1.gigared.com
returns:

;  DiG 9.2.1  gervasoni-ingenieria.com mx @ns1.gigared.com
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 31796
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 2, ADDITIONAL: 2

;; QUESTION SECTION:
;gervasoni-ingenieria.com.  IN  MX

;; ANSWER SECTION:
gervasoni-ingenieria.com. 2436  IN  MX  10
smtp.gervasoni-ingenieria.com.
gervasoni-ingenieria.com. 2436  IN  MX  20
smtp1.gervasoni-ingenieria.com.

;; AUTHORITY SECTION:
gervasoni-ingenieria.com. 150079 IN NS  ns1.gigared.com.
gervasoni-ingenieria.com. 150079 IN NS  ns2.gigared.com.

;; ADDITIONAL SECTION:
ns1.gigared.com.10800   IN  A   200.68.216.15
ns2.gigared.com.10800   IN  A   200.68.216.3



and ns2.gigared.com returns:

;  DiG 9.2.1  gervasoni-ingenieria.com mx @ns2.gigared.com
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 64398
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 2

;; QUESTION SECTION:
;gervasoni-ingenieria.com.  IN  MX

;; ANSWER SECTION:
gervasoni-ingenieria.com. 3600  IN  MX  10
smtp.gervasoni-ingenieria.com.
gervasoni-ingenieria.com. 3600  IN  MX  20
smtp1.gervasoni-ingenieria.com.

;; ADDITIONAL SECTION:
smtp.gervasoni-ingenieria.com. 3600 IN  A   200.68.216.11
smtp1.gervasoni-ingenieria.com. 3600 IN A   200.68.216.223


After querying ns1.gigared.com about smtp.gervasoni-ingenieria.com it
then started returning:

;  DiG 9.2.1  gervasoni-ingenieria.com mx @ns1.gigared.com
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 47521
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 2, ADDITIONAL: 4

;; QUESTION SECTION:
;gervasoni-ingenieria.com.  IN  MX

;; ANSWER SECTION:
gervasoni-ingenieria.com. 3600  IN  MX  20
smtp1.gervasoni-ingenieria.com.
gervasoni-ingenieria.com. 3600  IN  MX  10
smtp.gervasoni-ingenieria.com.

;; AUTHORITY SECTION:
gervasoni-ingenieria.com. 3600  IN  NS  ns1.gigared.com.
gervasoni-ingenieria.com. 3600  IN  NS  ns2.gigared.com.

;; ADDITIONAL SECTION:
smtp1.gervasoni-ingenieria.com. 3600 IN A   200.68.216.223
smtp.gervasoni-ingenieria.com. 3600 IN  A   200.68.216.11
ns1.gigared.com.10800   IN  A   200.68.216.15
ns2.gigared.com.10800   IN  A   200.68.216.3

Now it shows the entries for smtp and smtp1. Looks like some kind of
caching problem. You might want to check your timers on the DNS server. 

Bill


--
From:  Thomas Berger[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, February 17, 2004 1:20 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Hell error: 451 4.1.8 Domain of sender address test

Hi chabral,

[hope you're not only subscribed as [EMAIL PROTECTED]

  From one day to another I began to get the error above (for any 
account
  of my domain). Below is the output of a simple telnet to port 25 of 
one of
  the servers that give us problems. As you can see if I try to send a 
message
  as being from my local domain I get this error, but if I use another 
domain
  everything is Ok.
 
  [EMAIL PROTECTED]:~  telnet secsmtp1.panasonic.com 25
  Trying 140.212.212.98...
  Connected to secsmtp1.panasonic.com.
  Escape character is '^]'.
  220 secsmtp1.panasonic.com ESMTP Panasonic.com ; Tue, 17 Feb 2004
  14:33:15 -0500
  helo gervasoni-ingenieria.com
  250 secsmtp1.panasonic.com Hello smpt1.gervasoni-ingenieria.com
  [200.68.216.223] (may be forged), pleased to meet you
  mail from:[EMAIL PROTECTED]
  451 4.1.8 Domain of sender address [EMAIL PROTECTED] does not
  resolve

indeed:

;  DiG 9.2.3  gervasoni-ingenieria.com @a.gtld-servers.net
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 41
;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 2, ADDITIONAL: 2

;; QUESTION SECTION:
;gervasoni-ingenieria.com.  IN  A

;; AUTHORITY SECTION:
gervasoni-ingenieria.com. 172800 IN NS  ns1.gigared.com.
gervasoni-ingenieria.com. 172800 IN NS  ns2.gigared.com.

;; ADDITIONAL SECTION:
ns1.gigared.com.172800  IN  A   200.68.216.15
ns2.gigared.com.172800  IN  A   200.68.216.3

;; Query time: 156 msec
;; SERVER: 192.5.6.30#53(a.gtld-servers.net)
;; WHEN: Tue Feb 17 22:14:44 2004
;; MSG SIZE  rcvd: 118



;  DiG 9.2.3  gervasoni-ingenieria.com @ns1.gigared.com
;; global options:  printcmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: SERVFAIL, id: 41
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;gervasoni-ingenieria.com.  IN  A

;; Query time: 328 msec
;; SERVER: 200.68.216.15#53(ns1.gigared.com)
;; WHEN: Tue Feb 17 22:14:46 2004
;; MSG SIZE  rcvd: 42



;  DiG 9.2.3  gervasoni-ingenieria.com @ns2.gigared.com

[xmail] Re: SMTP Used incorretly

2004-02-09 Thread Bill Healy
smtprelay only makes it so that you have to authenticate to relay a
message to a domain that is not local. For local mail you don't have to
authenticate. 

Edinilson what you want can't be done because it will affect other SMTP
servers sending mail to your server. xmail doesn't know if it's a user
or another smtp server that is sending mail to your server so it can't
require security from one and not the other.

Bill

--
From:  Dale Qualls[SMTP:[EMAIL PROTECTED]
Sent:  Monday, February 09, 2004 9:12 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: SMTP Used incorretly

I thought clearing the smtprelay.tab did that?  I was under the impression =
that it forced authentication for smtp if the .tab was empty.

I could be wrong though, I'm very new to this.

 [EMAIL PROTECTED] 02/09/04 11:02AM 
I'm using xmail for 2 years and the first test that I used was
http://www.abuse.net/relay.html in the 1 minute after the installation.

All tests results that the server ISN'T an open relay BUT here we are
hosting today +- 1500 domains and my problem resides exactly in the:
In normal no relay setup, the only mail that will pass your server is the
one to your email address
because anyone in those 1500 domains could send a forged message to others
inside my server.

I'm looking for a way to force ALL USERS inside my server to authenticate
every time they want to use SMTP.

Thank you

Edinilson
-
ATINET-Professional Web Hosting
Tel Voz: (0xx11) 4412-0876
http://www.atinet.com.br=20


- Original Message -=20
From: CLEMENT Francis [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, February 06, 2004 8:32 AM
Subject: [xmail] Re: SMTP Used incorretly


Try this test for openrelay

(For any body reading this, it is the basic anti-relay test to perform
agains a mail server...)

From a pc connected to internet NOT using one of your IPs (ip not in =3D
xmail
smtprelay.tab), use telnet, connect to you server port 25 and try to =3D
send
manually a mail from [EMAIL PROTECTED] with subject =3D
'Edinilson
from telnet' (to help us see your test mail) to : me
[EMAIL PROTECTED] (external mail), then another to davide
[EMAIL PROTECTED] (external mail) and then one to you (internal =3D
mail
account).
In normal no relay setup, the only mail that will pass your server is =3D
the
one to your email address. The two others will be rejected with a =3D
'relay not
allowed' in the smtp session indicating a good anti-relay setup.

Second optionnal test for relay : Open a temporary free hotmail =3D
account,
then write a mail from this hotmail account (via webmail) to me, you =3D
and
davide (one at a time) with subject 'Edinilson from temp account' (to =3D
help
us see your test mail).
Here We will see if you server relays mails from hotmail for example

Francis


 -Message d'origine-
 De : Edinilson J. Santos [mailto:[EMAIL PROTECTED]
 Envoy=3DE9 : jeudi 5 f=3DE9vrier 2004 21:02
 =3DC0 : [EMAIL PROTECTED]
 Objet : [xmail] Re: SMTP Used incorretly
=3D20
=3D20
 I think that my example wasn't so good because in that test=3D20
 he send to me
 ([EMAIL PROTECTED]) a message BUT he can send message to any
 email/domain -([EMAIL PROTECTED]) for example.
=3D20
 What's wrong?
=3D20
 Thank you
=3D20
 Edinilson
 -
 ATINET-Professional Web Hosting
 Tel Voz: (0xx11) 4412-0876
 http://www.atinet.com.br=20
=3D20
=3D20
 - Original Message -=3D20
 From: Davide Libenzi [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, February 05, 2004 5:52 PM
 Subject: [xmail] Re: SMTP Used incorretly
=3D20
=3D20
 On Thu, 5 Feb 2004, Edinilson J. Santos wrote:
=3D20
  Davide, he is sending email THROUGH my SMTP server not TO my =3D
server.
=3D20
 The message you posted had a recipient of [EMAIL PROTECTED]:=20
=3D20
 Received: from administracao (200.158.170.68:1028)
  by mailserver with [XMail 1.17 (Win32/Ix86) ESMTP Server]
  id S30DC197 for [EMAIL PROTECTED] from
  [EMAIL PROTECTED];
  Thu, 5 Feb 2004 14:52:43 -0200
=3D20
=3D20
 And last time I checked, you are the handler of @atinet.com.br
=3D20
=3D20
=3D20
=3D20
 - Davide
=3D20
=3D20
=3D20
 -
 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]
=3D20
=3D20
=3D20
=3D20
 ---
 Outgoing mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.577 / Virus Database: 366 - Release Date: 03/02/2004
=3D20
 -
 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]
=3D20
-
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: AW: Re: AW: Re: AW: Re: AW: Re: AW: Re: SMTP Dialog Filter Hooks

2004-02-03 Thread Bill Healy
Now that would be a great thing! Never have liked how my front end
server just has to accept everything @localdomain before forwarding to
my backend server. I end up with a lot of undeliverables to bogus
accounts.

I currently use custdomains to smtprelay mail to my backend server. Wish
xmail could check some local recipients file even when using
custdomains. Then I could setup a scheduled job to pull a userlist from
the backend server and keep the local recipients file updated on my
gateway.

The setup I'm using is the same as you would do for a secondary MX
server so the problem applies to in two cases.

Having communication between X1 and X2 on the fly as mail comes in will
be a problem if X1 is your secondary MX server and X2 is down. 

Bill

--
From:  Harald Schneider[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, February 03, 2004 12:11 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] AW: Re: AW: Re: AW: Re: AW: Re: AW: Re: SMTP Dialog Filter
Hooks

The original idea was the constellation of 2 XMail servers:

X1  smtpfwd -- x2

X1 could use AFTER_RCPT_TO to query X2 via control protocol, if the
user exists before forwarding. The most elegant way to solve this,
would be on SMTP protocol level.=20

There is also the fact of reducing bounced mails and notificatons
to a minimum. Especially when the next virus attack swaps over ..

--Harald



 -Urspr=FCngliche Nachricht-
 Von: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Im Auftrag von Davide Libenzi
 Gesendet: Dienstag, 3. Februar 2004 20:51
 An: XMail mailing list
 Betreff: [xmail] Re: AW: Re: AW: Re: AW: Re: AW: Re: SMTP=20
 Dialog Filter Hooks
=20
=20
 On Tue, 3 Feb 2004, Harald Schneider wrote:
=20
  I see .. reading incoming DATA (including the header) and passing=20
  control to an extenal thread while buiffers are still=20
 receiving can be=20
  tricky. YOu're right. this one should be skipped and filtes should=20
  generally be implemented after each server reply, except data:
 =20
  EHLO
   -- AFTER_EHLO
  MAIL FROM: ...
   -- AFTER_MAIL_FROM
  RCPT TO: ...
   -- AFTER_RCPT_TO
  DATA
  From: ...
  To: ...
  ..
  ..
  ..
 =20
  Genrally, filters must not consume more time than a return from a=20
  subroutine, which checks if a filter is plugged in. Filters should=20
  also be able to overwrite XMail's resonses.
 =20
  Davide, what do you think about that ?
=20
 Honestly, I do not like it becuase I think it does not buy=20
 enough to us=20
 to balance the intrisic crappyness of running external=20
 commands at SMTP=20
 level. We do have filters, and IMO this should be enough.=20
 Repeat me again=20
 what this does buy to us ...
=20
=20
=20
 - Davide
=20
=20
 -
 To unsubscribe from this list: send the line unsubscribe=20
 xmail in the body of a message to [EMAIL PROTECTED]
 For general help: send the line help in the body of a=20
 message to [EMAIL PROTECTED]
=20

-
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: CustMapsList / Allow mail

2004-02-03 Thread Bill Healy
You could use whitelist in SMTP.IPPROP.TAB, that would be per
originating server though, not domain or user.

Bill

--
From:  John Kielkopf[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, February 03, 2004 12:23 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] CustMapsList / Allow mail

Any easy way to get Xmail to not refuse mail from servers listed in a black
list on a per domain or per user basis, without putting those domains on a
different server, and without using a filter that has to wait for the entire
email to be received before refusing it?
Thanks,
-John

-
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: accept mail from real MX

2004-01-31 Thread Bill Healy
So you want me to create an MX record for a server that is not reachable
form the Internet just so that it passes the test of making sure that
the address that is connecting to your SMTP port is listed as an MX of
the e-mail senders domain??? 

Hmmm... hope you don't have a secondary MX server for your domain.
Because if you do when it tries to send mail to your primary it's IP
address won't be listed as an MX for the e-mail senders domain. 

Also, taking your hotmail.com as an example. I just sent myself a
message from hotmail, my server received the message from 64.4.37.209.
Here's the list of hotmail.com MX servers:

mx1.hotmail.com.2304IN  A   65.54.166.99
mx1.hotmail.com.2304IN  A   64.4.50.99
mx1.hotmail.com.2304IN  A   65.54.252.99
mx2.hotmail.com.2304IN  A   65.54.190.7
mx2.hotmail.com.2304IN  A   65.54.254.145
mx2.hotmail.com.2304IN  A   65.54.252.230
mx2.hotmail.com.2304IN  A   65.54.166.230
mx3.hotmail.com.2304IN  A   65.54.167.5
mx3.hotmail.com.2304IN  A   64.4.50.239
mx3.hotmail.com.2304IN  A   65.54.253.99
mx4.hotmail.com.2304IN  A   65.54.253.230
mx4.hotmail.com.2304IN  A   65.54.167.230
mx4.hotmail.com.2304IN  A   65.54.190.230
mx4.hotmail.com.2304IN  A   65.54.254.151
ns1.hotmail.com.77457   IN  A   216.200.206.140
ns2.hotmail.com.77457   IN  A   216.200.206.139
ns3.hotmail.com.77457   IN  A   209.185.130.68
ns4.hotmail.com.77457   IN  A   64.4.29.24

Don't see that IP in there do you Fails the test Not good.

It's not uncommon to have separate servers for sending and receiving
messages. So you won't always find MX records for the servers that
deliver messages to your server.

Bill


--
From:  Gustavo Galvan[SMTP:[EMAIL PROTECTED]
Sent:  Saturday, January 31, 2004 3:47 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: accept mail from real MX


Bill, there is no problem if you declare your 2 servers like valid MX in =
your=20
DNS. You can have multiple MX for a domain. Maybe your front end server=
=20
with a preference value of 10 and your internal server with 20.
But your internal server must have a public ip address. If you not have a=
=20
public ip address, you can configure your fron-end server at gateway for=20
internal server (DefaultSMTPGateways option in server.tab)
Now, whats the problem ?

Gustavo


El S=E1b 31 Ene 2004 19:07, Bill Healy escribi=F3:
 Sometimes it's not the MX that send mail out so this could cause
 problems.
 For example I have a front end server that receives mail, scans for spa=
m
 and Virus and then passes it on to my internal server. But when I
 respond to an email it's my internal server that sends it directly to
 the recipients server.

 Bill

 --

 From: =09Davide Libenzi[SMTP:[EMAIL PROTECTED]

 Sent: =09Saturday, January 31, 2004 1:36 PM
 To: =09XMail mailing list
 Subject: =09[xmail] Re: accept mail from real MX
 
 On Sat, 31 Jan 2004, Gustavo Galvan wrote:
  First, my configuration files (the basics for that question)
 
  In smtprelay.tab I have:
  127.0.0.1=3D09255.255.255.255
 
  In server.tab I have:
  EnableAuthSMTP-POP3=3D091
  SMTP-RDNSCheck=3D091
  CheckMailerDomain=3D091
 
  but im receiving mail from [EMAIL PROTECTED], but sender ip address is =
not
  a=3D MX=3D20
  for hotmail.com.
  Is there a way to restrict incoming smtp to only authorized MX for a
  doma=3D in ?
 
 No. But this is a useful feature to add IMO. Queued.
 
 
 
 - 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: Max mailbox size

2004-01-25 Thread Bill Healy
The MaxMBsize is in KBytes, so 2 would be 20 Megs. What do you have
MaxMBsize set to and how big are your user directories getting?

Bill

--
From:  Dick Spork[SMTP:[EMAIL PROTECTED]
Sent:  Sunday, January 25, 2004 12:53 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Max mailbox size

Hallo all,
In the Xmail server I am running in W2k the mailboxes are able to grow over 
the MaxMBsize set in the user.tab, without any message or log entry.
Do I need to set a switch or varable some where to get the Max mailbox size 
active?


Met een groet,

;-)ick Spork
[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: Max mailbox size

2004-01-25 Thread Bill Healy
Do you have anything in smtpauth.tab? If so, empty it.
What is DefaultSmtpPerms set to in server.tab?

Bill

--
From:  Dick Spork[SMTP:[EMAIL PROTECTED]
Sent:  Sunday, January 25, 2004 4:26 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Max mailbox size

The maxSize is set dafault at 1 = 10MB, one of de boxes is over 40MB.
I have done a check with a box, set the Max at 2000  = 2 MB and send 7 
mails with a total of 11.8 MB with no rejections or errors logged.
This is the user.tab of that box.
.
MaxMBSize 2000
SmtpPerms MR
ReceiveEnable 1
PopEnable 1
ClosedML  0
Dick.


At 23:24 25-01-2004, you wrote:
The MaxMBsize is in KBytes, so 2 would be 20 Megs. What do you have
MaxMBsize set to and how big are your user directories getting?

Bill

 --
 From:  Dick Spork[SMTP:[EMAIL PROTECTED]
 Sent:  Sunday, January 25, 2004 12:53 PM
 To:[EMAIL PROTECTED]
 Subject:   [xmail] Max mailbox size
 
 Hallo all,
 In the Xmail server I am running in W2k the mailboxes are able to grow
over
 the MaxMBsize set in the user.tab, without any message or log entry.
 Do I need to set a switch or varable some where to get the Max mailbox
size
 active?
 
 
 Met een groet,
 
 ;-)ick Spork
 [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]

Met een groet,

;-)ick Spork
[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: Set up problem

2004-01-21 Thread Bill Healy
To make sure you are authenticating everyone empty the smtprelay.tab
file. Now you will have to authenticate in order to send mail to
non-local domains. 

In your e-mail client program (Outlook Express) the account name has to
be the complete e-mail address. Also don't turn on the option to use
Secure Password Authentication, just turn on the option to use
Authentication on sending messages.

Bill


--
From:  Apache7[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, January 20, 2004 10:11 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Set up problem

Hello everyone,
I've installed XMail on my NT workstation.
I created a domain and the XMail Server service is working OK.
I created an account called [EMAIL PROTECTED]

I used Outlook Express as client to send an email and it's working.
However, I don't think the server is authenticating the user.
In addition to this, I can't connect to the POP server.
It fails when authenticating.

Can someone help please?
I'm sure I've missed something somewhere, but can't find where.

Thanks in advance.
-
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: POP3?

2004-01-14 Thread Bill Healy
Relay means accepting message destined for a domain that is NOT hosted
on your mail server.

Bill

--
From:  Dustin C. Hatch[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, January 13, 2004 5:56 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: POP3?

by relay, do you mean open their client, set mail.mydomain.com as smtp 
and send messages?
Tracy wrote:

smtp.ipmap.tab is the list of IP addresses allowed to connect to your SMTP 
server. Generally speaking, there should be at least one line in there:

0.0.0.0   0.0.0.0   ALLOW 1


Unless, of course, you don't want to receive mail from the outside world.

smtprelay.tab is the list of IP addresses allowed to relay mail through 
your SMTP server. Generally speaking, this should be empty - although you 
can add entries for local hosts that send mail (such as web servers that 
generate email). Just remember that any IP address listed in smtprelay.tab 
will be allowed to send mail to anywhere (not just local addresses) without 
requiring authentication.

At 20:50 1/13/2004, Dustin C. Hatch wrote:

  

Okay, I figured it out.  I had only allowed my IP address in
smtp.ipmap.tab and smtprelay.tab.  I cleared these documents, and all is
well.  What is the difference in the two?  Also, why do my logs keep
saying xmailserver.test, when I deleted that domain?
Jeffrey Laramie wrote:



Dustin C. Hatch wrote:



  

What log will it show up in? POP3 shows when I log in and SMTP shows
when I send, but which shows when I receive?






Your smtp log should show any activity by the XMail smtp server
including mail received from the outside, lmail shows local mail, and I
believe the smail log shows activity by the XMail version of sendmail
but I'm not 100%sure of that one.

Jeff


-
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: AW: Re: AW: Re: XMail growing memory image ...

2004-01-12 Thread Bill Healy
I think for the LD_ASSUME_KERNEL to make a difference you have to use
the version compiled on RH9 with no special options like the -static.
Just a guess though.

Bill

--
From:  Pascal  de R.[SMTP:[EMAIL PROTECTED]
Sent:  Monday, January 12, 2004 6:34 AM
To:Harald Schneider
Subject:   [xmail] Re: AW: Re: AW: Re: XMail growing memory image ...


  Unfortunatly, xmail crashed at 3pm :-((


  Any other idea ?


lundi 12 janvier 2004 at 09:31:11, you said :

Harald Exactly 2.4.1 .. this makes the system to emulate the older threading
=
Harald scheme.
Harald RedHat9 comes with a new thread-handler, which is not always that =
Harald compatible to
Harald existing applications  therefore they have this env variable.

Harald --Harald


 -Urspr=FCngliche Nachricht-
 Von: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Im Auftrag von Pascal de R.
 Gesendet: Montag, 12. Januar 2004 09:26
 An: Harald Schneider
 Betreff: [xmail] Re: AW: Re: XMail growing memory image ...
=20
=20
=20
 lundi 12 janvier 2004 at 09:07:01, you said :
=20
 Harald Many problems with older glibc compiled apps (or=20
 multi-threaded=20
 Harald apps) on =3D RedHat9 can be solved with exporting the=20
 environment=20
 Harald variable LD_ASSUME_KERNEL =3D3D 2.4.1
=20
=20
 I will try but do I have to write my kernel version=20
 (2.4.20-8) or exactly 2.4.1 ?
=20
=20
 Harald before starting the application. Just put it in your XMail=20
 Harald startup =3D script and restart.
=20
 Harald Would be interesting to see, if XMail crashes again=20
 under these=20
 Harald =3D conditions.
=20
 Harald --Harald
=20
=20
  -Urspr=3DFCngliche Nachricht-
  Von: [EMAIL PROTECTED] =20
 [mailto:[EMAIL PROTECTED] Im Auftrag von Pascal de R.
  Gesendet: Montag, 12. Januar 2004 08:36
  An: Davide Libenzi
  Betreff: [xmail] Re: XMail growing memory image ...
 =3D20
 =3D20
  dimanche 11 janvier 2004 at 18:00:15, you said :
 =3D20
  Davide code. But maybe is a linking problem, so it is wirth=3D20
  a try. Let=3D20
  Davide us know how it goes ...
 =3D20
 =3D20
  About memory, no problem but XMail scrash at 3h42 am=20
 :-(=3D20  Running=20
 21 hours and never using more than 80 Mb =3D20
 =3D20
  Do you want the core File (74 Mb) ?
 =3D20
 =3D20
  Davide - Davide
 =3D20
 =3D20
  Davide -
  Davide To unsubscribe from this list: send the line=3D20
  unsubscribe xmail=3D20
  Davide in the body of a message to [EMAIL PROTECTED]
  For general=3D20
  Davide help: send the line help in the body of a message to=3D20 =

  Davide [EMAIL PROTECTED]
 =3D20
 =3D20
 =3D20
 =3D20
 =3D20
Best regards,
Pascal, [EMAIL PROTECTED]
 =3D20
  -
  To unsubscribe from this list: send the line=20
 unsubscribe=3D20  xmail=20
 in the body of a message to [EMAIL PROTECTED]  For =
Harald general=20
 help: send the line help in the body of a=3D20  message to=20
 [EMAIL PROTECTED] =3D20
=20
 Harald -
 Harald To unsubscribe from this list: send the line=20
 unsubscribe xmail=20
 Harald in the body of a message to [EMAIL PROTECTED]
 For general=20
 Harald help: send the line help in the body of a message to=20
 Harald [EMAIL PROTECTED]
=20
=20
=20
=20
=20
   Best regards,
   Pascal, [EMAIL PROTECTED]
=20
 -
 To unsubscribe from this list: send the line unsubscribe=20
 xmail in the body of a message to [EMAIL PROTECTED]
 For general help: send the line help in the body of a=20
 message to [EMAIL PROTECTED]
=20

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





  Best regards,
  Pascal, [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: URGENT !!

2004-01-07 Thread Bill Healy
If you have any filters try removing them and seeing if that fixes the
problem. 

Bill

--
From:  Gustavo Galvan[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, January 07, 2004 3:08 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: URGENT !!

Is not possible send messages with size  10 lines of text.
The server was running fine 1 year aprox. (updated in 2003-11 with 1.17) =
and=20
now (yesterday and today) has this problem.
Server is Linux, 512 Mb RAM, 28 Gb free. Nothing was changed in server. I=
 need=20
to know what can originate that fault, and try to repair urgent because i=
t's=20
a production server.
Help please.=20
Thank you.

Gustavo
-
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: SNDRIP=ERDNS - RDNS Check - How to explain?

2003-12-28 Thread Bill Healy
Check the docs:

[SMTP-RDNSCheck]
Indicate if XMail must do an RDNS lookup before accepting a incoming
SMTP connection. If 0, the check is not performed; if 1 and the check
fails, the user receives a 'server use forbidden' at MAIL_FROM time; if
-S (S  0) and the check fails, a delay of S seconds between SMTP
commands is used to prevent massive spamming. 
SMTP authentication overrides the denial set by this option by giving
authenticated users the ability to access the server from 'mapped' IPs.

RDNS means Reverse DNS. When enabled xmail tries to look up the IP
address and get a Host name for it, if it can't then it denies the mail
if SMTP-RDNSCheck=1

Bill

--
From:  Lev Shamilov[SMTP:[EMAIL PROTECTED]
Sent:  Sunday, December 28, 2003 12:47 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: SNDRIP=ERDNS - RDNS Check - How to explain?

OK, again: The error message says:
The sender's domain is listed in SMTP-RDNSCheck or in
CustMapsList 

Questions: SMTP-RDNS Check agains WHAT 
Where is the domain or service

I know where is listed CustMapsList URL but where is RDNS???
What am I missing ?

My question is what to say to the other party? Telling them that
they are listed in SMTP-RDNSCheck does not help them to fix the
problem, isn't it???

Does anybody understand my question?


Lev Shamilov
[EMAIL PROTECTED]


On Sun, 28 Dec 2003 04:28:35 +0100
Michael Schwarz [EMAIL PROTECTED] wrote:

 Hello Lev
 
  I knew how to customize the error message, I just don't know 
  what to say in that message (I mean what the other postmaster 
  should fix on his part, to be able to send message to my server).
  
  
  Lev.
  
 As an example look at http://www.blackhost.net/xmail/errors.html
 
 It is from Harald Schneider at http://www.marketmix.com/.
 
 He send it to the list (or a link?) sometime in the past.
 
 Hope it helps.
 
 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] Re: To much memory ?

2003-12-26 Thread Bill Healy
Any filters or custom processing?

Bill

--
From:  Pascal  de R.[SMTP:[EMAIL PROTECTED]
Sent:  Friday, December 26, 2003 1:11 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] To much memory ?

First, Merry Christmas everybody :-)

I have xmail 1.17 installed on RH9 managing around 500 domains. around
200 e-mail / hour

When I start running xmail process, he needs 281MB, 24h after 360 and
3/4 days after 690 MB!. I hope it is a setup problem and I have to correct it
because on this computer i'm running Apache, MySql and Bind, and
1GB memory seems to be short if i don't restart xmail every 2 days.



Thank you for your help.



  Best regards,
  Pascal, [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: UNIX

2003-12-04 Thread Bill Healy
Yet. lol ;)

--
From:  Davide Libenzi[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, December 04, 2003 10:19 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: UNIX

On Thu, 4 Dec 2003, Jeffrey L. Conley wrote:

 Has anyone installed Xmail on Unix and more specifically HP-UX?

Unix, a lot. But XMail does not have a port to PARISC



- 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: XMailAdmin error

2003-12-01 Thread Bill Healy

Sounds like you just downloaded the latest exe and didn't get one with
the installer. Download the 0.23 version with installer and install it
that way. http://www.webifi.com/xmail/XMailAdmin0.23installer.exe 

Then get the latest version (0.24) and replace the xmailadmin.exe with
it. http://www.webifi.com/xmail/XMailAdmin0.24.exe.zip

That should do it, the installer version will have the needed support
files for xmailadmin to run.

Bill

--
From:  D.Spork[SMTP:[EMAIL PROTECTED]
Sent:  Monday, December 01, 2003 6:44 AM
To:xmail-xmailserver.org
Subject:   [xmail] XMailAdmin error


I am new to XMail and start to explore it's possibilities.  It is running 
on a W2000 system. When I try to start XMailAdmin it gives me the error 
MSWINSCK.OCX is missing.
Do anybody have an idea what to install to get XmailAdmin running?  W2000 
support tools are installed already.



;-)ick Spork
[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 sending to user@POP3server.address

2003-11-27 Thread Bill Healy

Or maybe the problem is this:
# dig gugu.usal.es

gugu.usal.es.   7125IN  CNAME   aida.usal.es.
aida.usal.es.   7125IN  A   212.128.129.112

# dig gugu.usal.es mx

gugu.usal.es.   7096IN  CNAME   aida.usal.es.
aida.usal.es.   7113IN  MX  10 platos.usal.es.
aida.usal.es.   7113IN  MX  30 mail.rediris.es.
aida.usal.es.   7113IN  MX  10 vasos.usal.es.

platos.usal.es. 7113IN  A   212.128.129.114
mail.rediris.es.28753   IN  A   130.206.1.2
vasos.usal.es.  7113IN  A   212.128.129.113


--
From:  Leonardo Fogel[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, November 27, 2003 11:55 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Problem sending to [EMAIL PROTECTED]


 --- Francesco Vertova [EMAIL PROTECTED] wrote:=20
 =20
  Did you change your DNS configuration recently?
=20
 I've been running XMail for 6 weeks (installed on
 Oct 12) and always used the same config (no
 SmartDNSHost in server.tab).
=20

Did the administrator of the DNS server change the RRs
recently? I guess that is why XMail stopped working.

In fact, I am affraid you have found a bug on XMail
because I have sent a test message to
[EMAIL PROTECTED] and XMail (on RedHat 9.0) has tried
(and it is still trying) to connect to
212.128.129.112.

I have read from the list that XMail implements its
own 'DNS resolver', for portability reasons. As your
DNS RRs look good to me, I believe XMail's DNS
resolver is not working properly (maybe because of the
combination of CNAME and MX records).


__

Yahoo! Mail: 6MB, anti-spam e antiv=EDrus gratuito! Crie sua conta =
agora:
http://mail.yahoo.com.br
-
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: xmcrypt.cpp in VB

2003-11-27 Thread Bill Healy

Get the xmailadmin code from http://www.webifi.com/xmail/ it's in there
I believe.

Bill


--
From:  Shiloh Jennings[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, November 27, 2003 3:33 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] xmcrypt.cpp in VB


Has anybody converted xmcrypt.cpp to visual basic code?  I am writing some
code to migrate some of our servers over to XMail and all I still need is a
way to convert the clear text password to the encrypted string from within
my VB code.  Even an ActiveX dll would work.  I just do not want to shell a
task to xmcrypt.exe for each user account.

-
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: xmcrypt.cpp in VB

2003-11-27 Thread Bill Healy

You're welcome.

--
From:  Shiloh Jennings[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, November 27, 2003 4:11 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: xmcrypt.cpp in VB


You are absolutely right, Bill.  It does contain a VB function called
Xmcrypt that does exactly what I need.  Thanks a million.


- Original Message - 
From: Bill Healy [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, November 27, 2003 6:03 PM
Subject: [xmail] Re: xmcrypt.cpp in VB



 Get the xmailadmin code from http://www.webifi.com/xmail/ it's in there
 I believe.

 Bill


 --
 From: Shiloh Jennings[SMTP:[EMAIL PROTECTED]
 Sent: Thursday, November 27, 2003 3:33 PM
 To: [EMAIL PROTECTED]
 Subject: [xmail] xmcrypt.cpp in VB
 
 
 Has anybody converted xmcrypt.cpp to visual basic code?  I am writing
some
 code to migrate some of our servers over to XMail and all I still need is
a
 way to convert the clear text password to the encrypted string from
within
 my VB code.  Even an ActiveX dll would work.  I just do not want to shell
a
 task to xmcrypt.exe for each user account.
 
 -
 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: Looking for usage utility

2003-11-04 Thread Bill Healy

No I haven't, from the description it look like it only works with the
log files. I'm looking for something that will give me a quick report of
domain, user, mailbox size and number of messages at a minimum.

Bill

--
From:  Shawn Anderson[SMTP:[EMAIL PROTECTED]
Sent:  Monday, November 03, 2003 4:45 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Looking for usage utility


Have you looked at XMailStats?

http://xmail.eye-catcher.com/Community/Downloads/General/default.aspx

Shawn 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Bill Healy
Sent: Monday, November 03, 2003 5:01 PM
To: '[EMAIL PROTECTED]'
Subject: [xmail] Looking for usage utility


Has anyone come up with a utility that will give a summary of how many
messages and the total size of each xmail user's mailbox? Something that
will allow me to see who has a lot of mail sitting on the server and how
much space they are taking up.

Oh, need this for Windows xmail server.

Thanks,
 Bill

-
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: timetest ...

2003-11-03 Thread Bill Healy

Maybe something is different when run as a service. For example a user
preference that doesn't apply to services. I know, it's a long shot.
Could you make your test program so that it can be run as a service and
have it send it's output to a file?

Bill

--
From:  Davide Libenzi[SMTP:[EMAIL PROTECTED]
Sent:  Monday, November 03, 2003 7:47 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: timetest ...


On Mon, 3 Nov 2003, Rob Arends wrote:

 Davide, I note that all rotstr are correct  isdst is correct (depending on
 the test I did).  This algorithm works for me.

 I'm running w2k server, SP4, Xmail 1.17

The problem is that the freakin' algo is the same as the one XMail uses :(
This is really weird ...



- 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] Looking for usage utility

2003-11-03 Thread Bill Healy

Has anyone come up with a utility that will give a summary of how many
messages and the total size of each xmail user's mailbox? Something that
will allow me to see who has a lot of mail sitting on the server and how
much space they are taking up.

Oh, need this for Windows xmail server.

Thanks,
 Bill

-
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: Question about CTRL and error

2003-10-26 Thread Bill Healy

Zip doesn't get empty directories, I bet you have some missing.

Bill

--
From:  Shawn Anderson[SMTP:[EMAIL PROTECTED]
Sent:  Sunday, October 26, 2003 6:00 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Question about CTRL and error


Same platform, different box.  It was a zip of the entire directory
structure, and I verified that I copied everything.

Shawn 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Bill Healy
Sent: Saturday, October 25, 2003 2:07 PM
To: '[EMAIL PROTECTED]'
Subject: [xmail] Re: Question about CTRL and error


Was this a move between the same OS or across platform? Sounds like
something didn't get moved correctly, check the directory structure against
what is in the docs, could be that empty directories didn't get moved. Also
try stopping xmail, emptying the tabindex directory and restarting xmail. It
will rebuild the files automatically in tabindex.

Bill

--
From: Shawn Anderson[SMTP:[EMAIL PROTECTED]
Sent: Saturday, October 25, 2003 8:25 AM
To:   [EMAIL PROTECTED]
Subject:  [xmail] Re: Question about CTRL and error


Hmm, I double checked the user name and password.  I even recreated the 
password.  This happened right after I move XMail to a new server and I 
still have not found a solution.  I just added a new user and password 
and that one works -- even though the old one (still in the file) doesn't.

Very odd.
Shawn

-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Michael Harrington
Sent: Friday, October 24, 2003 7:16 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Question about CTRL and error


I've noticed this before.  It used to appear when the password was 
invalid, but the username was correct.  Now shows with either the 
username or password or both are incorrect.  However, if you just type 
in a username, and no password you will still get a Bad CTRL login 
error.  Is the password hash correct inside of the log file? :)

-Mike

- Original Message -
From: Shawn Anderson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, October 24, 2003 7:00 AM
Subject: [xmail] Question about CTRL and error



 Davide,

 What would cause a resource lock not found when trying to log in with 
 a valid ctrl account?

 Shawn

 -
 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]


-
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: Question about CTRL and error

2003-10-25 Thread Bill Healy

Was this a move between the same OS or across platform? Sounds like
something didn't get moved correctly, check the directory structure
against what is in the docs, could be that empty directories didn't get
moved. Also try stopping xmail, emptying the tabindex directory and
restarting xmail. It will rebuild the files automatically in tabindex.

Bill

--
From:  Shawn Anderson[SMTP:[EMAIL PROTECTED]
Sent:  Saturday, October 25, 2003 8:25 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: Question about CTRL and error


Hmm, I double checked the user name and password.  I even recreated the
password.  This happened right after I move XMail to a new server and I
still have not found a solution.  I just added a new user and password and
that one works -- even though the old one (still in the file) doesn't.

Very odd.
Shawn 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Michael Harrington
Sent: Friday, October 24, 2003 7:16 PM
To: [EMAIL PROTECTED]
Subject: [xmail] Re: Question about CTRL and error


I've noticed this before.  It used to appear when the password was invalid,
but the username was correct.  Now shows with either the username or
password or both are incorrect.  However, if you just type in a username,
and no password you will still get a Bad CTRL login error.  Is the password
hash correct inside of the log file? :)

-Mike

- Original Message -
From: Shawn Anderson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, October 24, 2003 7:00 AM
Subject: [xmail] Question about CTRL and error



 Davide,

 What would cause a resource lock not found when trying to log in with a
 valid ctrl account?

 Shawn

 -
 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: Mailbox full question

2003-09-29 Thread Bill Healy

It's a temporary error not a permanent error, the person at the other
end might empty the mailbox at any time and then the message could go
through.

Bill

--
From:  S=F6nke Ruempler[SMTP:[EMAIL PROTECTED]
Sent:  Sunday, September 28, 2003 10:45 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Mailbox full question


hi davide,

once again a bug or feature question. i noticed that xmail tries to =
send a
message again if the remote server gives the error 'Mailbox full'. Is =
that
right? I think XMail schon bounce that message immediately back to the
sender?!


--

Soenke.

-
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: How to disable relaying

2003-09-18 Thread Bill Healy

To disable relaying empty the smtprelay.tab file of all IPs except those
you do want to relay ANY mail from.

To forward mail for a specific domain (domain2 in this case) create a
domain.tab file in custdomains with the following line:
smtprelay address of other server

That's all you have to do to relay for a domain, there should be no
other entries anywhere that reference domain2.

Bill

--
From:  Nepomucky Radek[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, September 18, 2003 4:38 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] How to disable relaying

I have two domains domain1.com and domain2.com.
I have one server with two IP addresses, MX record for domain1 points to
IP1
and MX for domain2 points to IP2.
XMail should manage mailboxes for domain1 only and forward emails for
domain2 to another computer with mail server on it (not xmail).
I was able to set up this behaviour by adding domain1 into the
domains.tab
file and by adding record for domain2 into the smtpfwd.tab file.
Everything was perfect and working but then I tried to deny relaying.
So I modified the smtprelay.tab file to disable all ips except loopback
ip,
IP1, IP2 and my local subnet.
Now emails from outside are still delivered to domain1 but emails for
domain2 are rejected.

What else should I do to be able to accept emails for domain2 too (I
must
redirect/forward all emails for domain2 to the second computer). I was
unable to find solution in readme file. Can anyone help me?

And of course: my xmail version is 1.16 (Win32).

Thanks for any help.
Best regards
Radek
-
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: FORWARDING STILL RANDOM ON SOLARIS/SPARC W/1.17

2003-09-16 Thread Bill Healy

I think I had this problem way back a few versions and figured out that
with mailbox as the last entry in the mailproc it solved the problem.
Ever since then I've always put it last and never seen the problem
again. Try that and see if it fixes your problem.

Bill


--
From:  D. Duccini[SMTP:[EMAIL PROTECTED]
Sent:  Monday, September 15, 2003 10:15 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] FORWARDING STILL RANDOM ON SOLARIS/SPARC W/1.17



Davide-

We're still seeing the situation where mail does not get redirected to the
remote host -- randomly!

We currently have the mailproc.tab file setup as

mailbox
redirect  [EMAIL PROTECTED]

I should note that [EMAIL PROTECTED] is another machine hosted on
our network, so i know that its up and available

Also, a copy ALWAYS makes it into the inbox, so i know that part is
working.  This is how we know redirect ins't working reliably.

What can we enable debug wise to track this down?

-David

-
[EMAIL PROTECTED]BackPack Software, Inc.www.backpack.com
+1 651.645.7550 voice   Life is an Adventure.
+1 651.645.9798 faxDon't forget your BackPack!   
-



-
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: FORWARDING STILL RANDOM ON SOLARIS/SPARC W/1.17

2003-09-16 Thread Bill Healy

Sorry Davide, I think at the time I was just thinking I missed something
in the docs and once the mail was delivered to the mailbox it wasn't
available for anything else. I know, not a good reason, but it was a
late night fix and I forgot all about it. Just remembered to keep
putting it at the end and not why, until reminded by this message.

Bill

--
From:  Davide Libenzi[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, September 16, 2003 4:56 PM
To:'[EMAIL PROTECTED]'
Subject:   [xmail] Re: FORWARDING STILL RANDOM ON SOLARIS/SPARC W/1.17


On Tue, 16 Sep 2003, Bill Healy wrote:


 I think I had this problem way back a few versions and figured out that
 with mailbox as the last entry in the mailproc it solved the problem.
 Ever since then I've always put it last and never seen the problem
 again. Try that and see if it fixes your problem.

Guys, if this is true, this is a bug and should be reported.



- 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: Unable to send mail using Port 24 SMTP

2003-09-02 Thread Bill Healy

Then either figure out how to change the port that Eudora connects to
the smtp server on or have xmail bind to ports 24 and 25. Check the
docs, I think you can have it listen on more than one port.

Bill

--
From:  Chris Jones[SMTP:[EMAIL PROTECTED]
Sent:  Tuesday, September 02, 2003 9:55 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Unable to send mail using Port 24 SMTP


I changed the SMPT port to 24 to get around the ISP blocking port 25.  I 
changed the MX records for my domain name.  Now I can receive email no 
problem but I can no longer send email using Eudora on Windows 
2000.  Eudora gives an error: Could not connect to enersave.ca.  Cause: 
connection refused (10061).

If I change the port back to 25 then I can send emails no problem?





Chris Jones, P. Eng.
14 Oneida Avenue
Toronto, ON M5J 2E3
Tel. 416 203-7465
Fax. 416 203-8249



-
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: OT: Virus filters and munpack

2003-09-01 Thread Bill Healy

You have to uudecode the files after you unpack them. Do a search for
uudecode.exe or an unpack program that can handle .uue files. Then you
might have to uncompress the files if the AV program you are using can't
scan inside archives. If so check out PAext in the PAutils at
http://www.powerarchiver.com it can decompress many formats and doesn't
have to be told what the file format is.

Bill


--
From:  Tracy[SMTP:[EMAIL PROTECTED]
Sent:  Sunday, August 31, 2003 2:15 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] OT: Virus filters and munpack

This is somewhat off-topic, in that it doesn't relate specifically to 
xmail, but rather to an anti-virus filter that I am attempting to write.

I seem to be having problems with the munpack.exe program out of the XAV 
filter that has been discussed here and is linked from the XMail homepage. 
Note that I am not using the XAV filter directly, preferring to write my own.

When my filter runs munpack.exe, the message is unpacked and split into 
it's component pieces, but the pieces are not decoded. For instance, an 
email I am using for test has the eicar.com file placed in it, and when 
munpack finishes, the unpacked file contains (each line prefixed in the 
mail editor with  to get past my outbound MUA virus scanner):

 
 begin 600 eicar.com
 M6#5/(5`E0$%06S14%I8-30H4%XI-T-#*3=])$5)0T%2+5-404Y$05)$+4%.
 75$E625)54RU415-4+49)3$4A)[EMAIL PROTECTED]H`
 `
 end

rather than the actual binary information. Note that munpack did name the 
file eicar.com, it just didn't decode the information that should have 
been in the file.

I'm running this from Windows 2000 Server, using XMail 1.16. My filter 
program launches munpack with the following command line:

E:\mpack\munpack.exe -t

The working directory is the directory where the files should be unpacked 
(in this particular case, 
C:\WINNT\System32\Temp\1062363219133.2448.karen.dir).

Note that I am redirecting STDIN and sending the text of the message from 
my filter app to munpack's (redirected) STDIN.

Any suggestions would be appreciated


-
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: How to reject message in SMTP transaction

2003-08-28 Thread Bill Healy

Then drop the message silently as Davide said, no NDR generated.

Bill

--
From:  Michal Altair Valasek[SMTP:[EMAIL PROTECTED]
Sent:  Wednesday, August 27, 2003 3:44 PM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: How to reject message in SMTP transaction


|The the DATA command is over most of the damage in terms of 
|bandwidth has
|been already done. You do have the option inside your filter to reject
|w/out notification and you just have to make your filters 
|smarter to use
|such code in cases like the latest SoBig. That, BTW, could be detected
|w/out falling inside the AV engine because of the predictable subjects.

The main problem is: if the message is sent using virus's own SMTP engine,
then when I reject it in SMTP stage, everything is fine - the virus's SMTP
is required to handle it, and most likely it will simple discard it. But
when I'll accept message and then generate NDR, the innocent victim address
of which was used by victim, would be spammed with the NDR's.

I have no intention to write engine tailored specifically to trap some
virusses. I am writng content filter, which does not care about subject or
content of message, is works on content-type and attachment file names, and
therefore is generic.

-- Altair

-
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: unable to receive email

2003-08-28 Thread Bill Healy

You have to be able to get to port 25, that's how mail comes in. Port
110 is how you pick up mail with your mail client.

Bill

--
From:  Chris Jones[SMTP:[EMAIL PROTECTED]
Sent:  Thursday, August 28, 2003 11:42 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: unable to receive email


You are correct, the SMTP logs show no attempt to contact by the remote 
SMTP server.  I tried to telnet to port 25 and it was not available.  I can 
telnet to port 110.

What is the remedy?



Look at your SMTP logs to see if remote SMTP server are actually able to
deliver the message to your XMail server. I bet they don't.


- 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]


Chris Jones, P. Eng.
14 Oneida Avenue
Toronto, ON M5J 2E3
Tel. 416 203-7465
Fax. 416 203-8249



-
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: OT: Virus scanner for Windows / XMail

2003-08-25 Thread Bill Healy

F-Prot doesn't need to have the attachments decoded to detect a virus.
In fact I've used it a few times after a major outbreak to scan the
\mailroot\domains folder to see if any virii have slipped by before
f-prot was updated with the newest data files.

What you probably read in the readme was the way the script used to
work. I used to save the attachment to a temp folder and then scan them
with AVG and F-Prot. But it was found that F-Prot caught everything and
didn't require the overhead of decoding the attachment, so the script
was changed. 

Bill


--
From:  Tracy[SMTP:[EMAIL PROTECTED]
Sent:  Monday, August 25, 2003 11:57 AM
To:[EMAIL PROTECTED]
Subject:   [xmail] Re: OT: Virus scanner for Windows / XMail

I had looked at this script earlier, but I was confused about whether or 
not the message needed to be decoded before f-prot was run against it - I 
couldn't seem to find anything that decoded the attachments in the filter 
script, but the readme.txt made mention of saving attachments in a 
particular folder.


At 14:54 8/25/2003, Edinilson J. Santos wrote:


Try f-prot for DOS
http://www.f-prot.com/download/download_fpdos.html

and try these scripts too:
www.atinet.com.br/xmail


Edinilson
-
ATINET-Professional Web Hosting
Tel Voz: (0xx11) 4412-0876
http://www.atinet.com.br


- Original Message -
From: Tracy [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, August 24, 2003 2:46 PM
Subject: [xmail] OT: Virus scanner for Windows / XMail


Greetings,

Does anyone have a recommendation for a virus scanner (not a filter script,
the actual anti-virus program) for use with XMail on Windows? Being a
home user, I don't have much money to put into such a product, so if
there is one which is inexpensive (or free) to use, that would be so much
the better

Thanks, and sorry for the OT post...

Tracy


-
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]



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.512 / Virus Database: 309 - Release Date: 19/08/2003

-
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]



  1   2   3   >