[xmail] Re: Resend (mess/rsnd) list CTRL commands ...

2006-11-06 Thread Dick van der Kaaden

On Tuesday 07 November 2006 00:35, Davide Libenzi wrote:
 How badly would be needed the ability to list in flight messages, with
 the ability to schedule now them?

+1

Dick


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

-- 
Netrex Internet Solutions
Hosting, Webdesign, Copy Writing, Content Management
Achterstraat 8 B
3441 EH Woerden
The Netherlands
Telefoon +31 (0)348 - 433886
Fax +31 (0)348 - 410560
E-mail [EMAIL PROTECTED]
Website http://www.netrex.nl
-
To unsubscribe from this list: send the line unsubscribe xmail in
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 sendmail, php and shared webhosting

2005-10-16 Thread Dick van der Kaaden

On Saturday 15 October 2005 22:18, Davide Libenzi wrote:
 On Sat, 15 Oct 2005, Dick van der Kaaden wrote:
  What you think about a version of sendmail that has an option to use the
  Fr= om:=20
  header address as smtp mail from. Do you envision any problems with this?
 
  The thing is that the current behavior does not work well in the
  shared=20 hosting environment that we operate for our customers. Most of
  the these=20 sites use php and the php mail function. This function does
  not allow you t= o=20
  set the smtp mail from and it simply calls xmail's sendmail.=20
 
  Sendmail's default behavior is to use [EMAIL PROTECTED] as mail from. This 
  is
  n= ot=20
  very usefull! It will not allow our customers to receive bounces. Setting
  t= he=20
  domain in a virtualhost definition does not help either, since you cannot
  s= et=20
  the username. Asking our customers to create an [EMAIL PROTECTED]
  email=20 address to receive bounces is not very user friendly. Forcing
  them to use a= n=20
  smtp mailer is also not user friendly.=20
 
  I looked at sendmail and worked out how a way to implement this.=20
 
  =2D All rcpt to's are stored in a new temporary file.=20
  =2D No output is sent to szmailfile before having read all email
  headers.=20 =2D While reading thru the headers I set the szmailfrom to
  the address on t= he=20
  =46rom line.=20
  =2D If there is no From line or the From line contains an invalid
  address=20 (according to AddressFromAtPtr) then nothing gets set and
  sendmail will use= =20
  szmailfrom as previously setup in SysGetUserAddress.=20
  =2D After reading the headers, dump the mail from and rcpt to lines.
 
  If you are interested in the code them let me know.

 Dick, isn't it possible to do something on the PHP side?


Sure, you can use all sorts of libraries to send mail via smtp with php. The 
thing is, I cannot prevent my customers from using the php mail function. 

Basically, the change you made, setting the smtp mail from, has an unwanted 
side effect in case the mail bounces. This just generates useless extra mail 
traffic, since I am not at all interested in these bounces. The bounce is 
only usefull for my customer (e.g. the From: header).

All in all it is not a big issue, but having more control over the smtp mail 
from address would be usefull for webserver environments. I do not know if 
many people are using xmail in a setup like ours. 

Dick

 - 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: xmail sendmail, php and shared webhosting

2005-10-16 Thread Dick van der Kaaden

On Sunday 16 October 2005 17:44, Sönke Ruempler wrote:
 On 15.10.2005 13:50, Dick van der Kaaden wrote:
  Davide,
 
  What you think about a version of sendmail that has an option to use the
  From: header address as smtp mail from. Do you envision any problems with
  this?
 
  The thing is that the current behavior does not work well in the shared
  hosting environment that we operate for our customers. Most of the these
  sites use php and the php mail function. This function does not allow you
  to set the smtp mail from and it simply calls xmail's sendmail.

 It does, if you don't use PHP's safe_mode - see here:

 http://php.speedbone.de/manual/en/function.mail.php


I must admit that I had not RTFM and did not realize it was possible under 
normal operation. Unfortunately, we do use safe mode for our virtual hosts. 
Most of our customers run standard php scripts that occasionally have 
security issues.

Reading the php manual I realized that my change does have a security impact. 
Allowing an arbitrary mail from address from an untrusted source is not a 
good thing. I think it will be better to limit the domain part of the smtp 
mail from to the virtualhost servername. The user part must be configurable. 
I will have to think about this a little longer

Dick

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



[xmail] xmail sendmail, php and shared webhosting

2005-10-15 Thread Dick van der Kaaden

Davide,

What you think about a version of sendmail that has an option to use the From: 
header address as smtp mail from. Do you envision any problems with this?

The thing is that the current behavior does not work well in the shared 
hosting environment that we operate for our customers. Most of the these 
sites use php and the php mail function. This function does not allow you to 
set the smtp mail from and it simply calls xmail's sendmail. 

Sendmail's default behavior is to use [EMAIL PROTECTED] as mail from. This is 
not 
very usefull! It will not allow our customers to receive bounces. Setting the 
domain in a virtualhost definition does not help either, since you cannot set 
the username. Asking our customers to create an [EMAIL PROTECTED] email 
address to receive bounces is not very user friendly. Forcing them to use an 
smtp mailer is also not user friendly. 

I looked at sendmail and worked out how a way to implement this. 

- All rcpt to's are stored in a new temporary file. 
- No output is sent to szmailfile before having read all email headers. 
- While reading thru the headers I set the szmailfrom to the address on the 
From line. 
- If there is no From line or the From line contains an invalid address 
(according to AddressFromAtPtr) then nothing gets set and sendmail will use 
szmailfrom as previously setup in SysGetUserAddress. 
- After reading the headers, dump the mail from and rcpt to lines.

If you are interested in the code them let me know.

Regards,
Dick
-- 
Netrex internet solutions
Achterstraat 8b
3441 EH  Woerden
Tel: 0348-433886
Fax: 0348-433723
email: [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 problem with Netscape Messenger 4.78

2004-07-28 Thread Dick van der Kaaden
On Wed, 2004-07-28 at 19:32 +0200, Philippe wrote:
 Hello,
 
 I wan't to authorize any one on my lan to send mail with my xmail Server (without 
 authentication)
 
 With Mozilla 1.6 or Outook Express 6, no problem
 With Netscape 4.78 (i know it's old), it ask me user login. Of course the POP3 
 server is not on the same server.
 
 I tried to change EnableAuthSMTP-POP3 , DefaultSmtpPerms in server.tab, it doesn't 
 seems to work.
 
 There's something i dont' understand, but what :-)

It might be that you try to login using [EMAIL PROTECTED], but netscape 4
has a problem with the @ sign. You need to replace it wit a :

Dick

 
 Thanks
 
 Philippe
 -
 To unsubscribe from this list: send the line unsubscribe xmail in
 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.19-pre06 ...

2004-05-27 Thread Dick van der Kaaden
On Thu, 2004-05-27 at 10:08 -0700, Davide Libenzi wrote:
 On Thu, 27 May 2004, Rob Arends wrote:
 
  Davide, 
  
  1.19 pre06 running ok on W2k sp4.
  Low volume, with filters that were running on 1.17, Avfilter, XAV, and
  another that I wrote myself.
  Also checked POP3link, in/out bound smtp and pop3, all ok for 20 minutes
  now.
  
  No plans to test new smtp filers yet, maybe later.
 
 Aby reports on testing the new filter command?
 
Davide.

I have been testing the new pre-data filter on our mail fallbacks and it
seams to work properly. I really like this feature, it helps us to stop
all sorts of crap mail at the front door. 

Dick

 
 
 - 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: DNS and Cached DNS in Xmail

2004-03-30 Thread Dick van der Kaaden
+1

Dick

On Tue, 2004-03-30 at 21:03, Davide Libenzi wrote:
 On Tue, 30 Mar 2004, Tracy wrote:
 
  FCrDNS: Take the connecting IP address, retrieve all PTR records (hopefully 
  only one, but possible to get more). Then take the PTR record(s) and do A 
  lookup on it. Compare the connecting IP address to the A records returned - 
  if no match, either the DNS for the connecting IP has been 
  misconfigured/corrupted, or it's being forged by a spammer. (Of course, 
  this assumes that RDNS is in place for all connecting IP addresses - a 
  policy I have implemented for my server anyway.)
  
  RCfDNS: Take the HELO/HELO name, retrieve all A records. Starting with the 
  first returned A record, do PTR lookup. If HELO/EHLO matched PTR found for 
  any A record, assume valid, otherwise reject as misconfigured/corrupt DNS 
  or forgery.
  
  The RCfDNS is going to be expensive, due to the possible number of lookups 
  and the string comparisons,so it may not be worth the expense. However the 
  FCrDNS I definitely want to implement.
  
  I don't know if you would be interested in this kind of code or not for 
  inclusion in a future version - if so (and you can stand my poor coding 
  skills :) I'd be happy to share once I have something working...
 
 Nope. But I was thinking that XMail could have a special filter call right 
 before sending the response to the DATA command. A file with all the info 
 (IPs, sender, recipients, etc..) will be passed to the filter, that in 
 turn can reject by returning certain error codes. So this stuff can be 
 done with filters. How do you like 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: filter Bcc header from sendmail -t

2003-09-10 Thread Dick van der Kaaden

Sorry, I should have known that attachments aren't allowed, so here it
is in text.


791c791,795
 }
---

 if (strnicmp(szBuffer,Bcc:,4) == 0)
   szBuffer[0] = '\0';

   }
804c808,809
 fprintf(pDataFile, %s\r\n, szBuffer);
---
   if (szBuffer[0] != '\0')
   fprintf(pDataFile, %s\r\n, szBuffer);

-
To unsubscribe from this list: send the line unsubscribe xmail in
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: filter Bcc header from sendmail -t

2003-09-10 Thread Dick van der Kaaden

On Wed, 2003-09-10 at 19:46, Davide Libenzi wrote:
 On Wed, 10 Sep 2003, Dick van der Kaaden wrote:
 
  Davide,
 
  Currently your Xmail sendmail replacement (when invoked with -t)
  retrieves the Bcc addresses from the Bcc line and sends mails to these
  recipients, but it leaves the Bcc line in the mail source.
 
  I have changed SendMail.cpp so that it filters these lines. I would
  like this to be in the standard distribution.
 
  Is this ok with you?
 
 Dick, the code is broken. The header might spawn multiple lines :
 
 Bcc: Davide Libenzi [EMAIL PROTECTED],
   Dick van der Kaaden [EMAIL PROTECTED],
   ...
 
 I fixed it in 1.17
 
Oops, never thought about that.

Dick
 
 
 - 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: Problems w/ XMail / Courier-IMAP

2002-07-18 Thread Dick van der Kaaden


Jan,

I use mailproc.tab external delivery for all accounts that I need imap for.
The imap server that I use (dbmail - www.dbmail.org) has a special program
that you can use for this.

The line in mailproc.tab looks like this:

external  0 1 /usr/xmail/dbm.sh @@FILE
@@RCPT@@FROM

The shell script calls the dbmail-smtp program with the right parameters.

You do have to create the users/domains also in dbmail but this is without
all aliases/redirects on domain and user level, xmail takes care of those,
so it is not so complicated for me. Most of our users are stil using pop and
only a few imap.

Dick


- Original Message -
From: jan groene [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 18, 2002 7:46 AM
Subject: [xmail] Re: Problems w/ XMail / Courier-IMAP



 hi,

 i think the guy that did it ( i do not remember who was ), was using a
 smtprelay to route message to another server. but you can use local
 Maildir delivery if you're planning to run IMAP on the same server.

 um, it will run on the same machine... though i don't have any idea how to
 let xmail deliver directly to a foreign Maildir (without, say, adding a
 new user to XMail's userdb). sorry, i may be blind or simply dumb, please
 tell me how to accomplish this.

 -jan

 _
 Send and receive Hotmail on your mobile device: http://mobile.msn.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]




[xmail] Re: SV: Re: 452 mailbox full !?!?

2002-06-20 Thread Dick van der Kaaden


Did you create the domains under mailroot/domains? If xmail can't find the
directory structure it expects then this is the meesage you get.

Dick



- Original Message -
From: Allan Hansen, INBODAN [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, June 20, 2002 9:58 PM
Subject: [xmail] SV: Re: 452 mailbox full !?!?



 No, from another Linux box.

 -Oprindelig meddelelse-
 Fra: Davide Libenzi [mailto:[EMAIL PROTECTED]]
 Sendt: 20. juni 2002 21:01
 Til: '[EMAIL PROTECTED]'
 Emne: [xmail] Re: 452 mailbox full !?!?



 On Thu, 20 Jun 2002, Allan Hansen, INBODAN wrote:

 
  Hi all
 
  I am still in the process of testing Xmail. I have made a clean
  install of Xmail 1.9 on RedHat 7.3, and copied existing .tab files
  from another installation (1.8).
 
  Now I get this stange message when I try to send mail to a user on the
  Xmail
  server: 452 mailbox full..
 
  I have no clue whatsoever why this is happening. There are no full
  mailboxes, there is plenty of diskspace and the users MaxMBsize is the
  default (1).
 
  Anyone who can give me a hint?

 did you copy it from a windows install ?



 - 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: root mail

2002-06-12 Thread Dick van der Kaaden


On redhat:

/etc/crontab

Change the mailto line

Dick


- Original Message - 
From: Maarten Weyn [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 12, 2002 7:39 PM
Subject: [xmail] root mail


 
 Hi,
 
 I got some problems since i installed xmail (so i don't use the old
 sendmail anymore).
 
 I got a lot of errormessages of cronjobs that the address root does
 not exists.
 
 Where can I change the address of root or where can I tell xmail to
 forward all the mail for root to an other address?
 
 
 Thanks
 
 Maarten Weyn
 
 
 -
 To unsubscribe from this list: send the line unsubscribe xmail in
 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: logs

2002-06-12 Thread Dick van der Kaaden


Add -Sl -Pl -Ll -Ql to the command line starting xmail on unix/linux or to
MAIL_CMD_LINE in the registry on windows. You can find info like this in the
readme file supplied with xmail.

Dick

- Original Message -
From: Maarten Weyn [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 12, 2002 10:18 PM
Subject: [xmail] logs



 Hi, i just noticed
 My xmailserver is now running ok for a few months, but my logs directory
 is empty.
 How comes???


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

2002-06-12 Thread Dick van der Kaaden


Setup smtprelay.tab such that only people form the network range you want to
allow and send mail.

Example:

192.168.0.0255.255.255.0

Allows only people from the network 192.168.0.xxx to send mail

Dick

- Original Message -
From: Maarten Weyn [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 12, 2002 10:42 PM
Subject: [xmail] smtp



 Ok, my last question:

 Since my logs are working now i noticed, lot of people are using my
 server as smtp-server.  Which I don't want.
 How can I totally shut down the smtp server, so the server only receives
 messages which are for users and domains, the pop3 server handles.

 Cause when I read the manual, I tried to follow it, but I think I denied
 access for everyone.


 Maarten

 -
 To unsubscribe from this list: send the line unsubscribe xmail in
 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

2002-06-12 Thread Dick van der Kaaden


Sure! If you restrict access via smtprelay.tab then you will still recieve
all email for all domains in domains.tab. If you want to allow people to use
your smtp server as relay, let them use some sort of authentication. See
smtpauth.tab for this.

Dick


- Original Message -
From: Maarten Weyn [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 12, 2002 11:21 PM
Subject: [xmail] Re: smtp



 Yes that i know, and that is just the problem.
 I have people from around the whole world who got an account on my
 server, so I never know from which ip they send emails.

 Btw if idontknowwho send an email to [EMAIL PROTECTED] shouldn't than
 be the ip of idontknowwho be on that file or do I totally don't get (I
 suppose this one).

 Is it possible to deny all access to the smtp server and still receive
 emails?



 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 On Behalf Of Dick van der Kaaden
 Sent: woensdag 12 juni 2002 22:59
 To: [EMAIL PROTECTED]
 Subject: [xmail] Re: smtp


 Setup smtprelay.tab such that only people form the network range you
 want to
 allow and send mail.

 Example:

 192.168.0.0255.255.255.0

 Allows only people from the network 192.168.0.xxx to send mail

 Dick

 - Original Message -
 From: Maarten Weyn [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, June 12, 2002 10:42 PM
 Subject: [xmail] smtp


 
  Ok, my last question:
 
  Since my logs are working now i noticed, lot of people are using my
  server as smtp-server.  Which I don't want.
  How can I totally shut down the smtp server, so the server only
 receives
  messages which are for users and domains, the pop3 server handles.
 
  Cause when I read the manual, I tried to follow it, but I think I
 denied
  access for everyone.
 
 
  Maarten
 
  -
  To unsubscribe from this list: send the line unsubscribe xmail in
  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: imap server

2002-03-13 Thread Dick van der Kaaden

Gustavo,

You can try dbmail (http://www.dbmail.org). It's an imap solution that uses
a database (for now only mysql, but work is done on supporting other db's as
well) as backend. You can easily have xmail forward your mail to dbmail by
using either a filter or mailproc files. We use it for a number of domains
and it works ok.

Dick

- Original Message -
From: Gustavo Galvan [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, March 14, 2002 5:39 AM
Subject: [xmail] imap server



 Does somebody know a imap server (unix/linux) compatible with xmail?
 Thank you in advance.

 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: Problem with Netscape Messenger and Authentication

2002-01-02 Thread Dick van der Kaaden

From the readme file. Please read it!

Date 22-07-2000  0.58
 New POP3 username/domain separator ( : ) has been introduced other than (
@ ) that
 is not a valid char for Netscape mail system.


- Original Message -
From: Sönke Ruempler [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 02, 2002 1:18 PM
Subject: [xmail] Problem with Netscape Messenger and Authentication



 hi again,

 if i try to autenticate with netscape, there is a problem with the @ in
 the username.

 Maybe we could solve it, if xmail allows a # for separating username and
 domain. i know some providers that do the same.

 thx for help.




 -- Binary/unsupported file stripped by Listar --
 -- Type: application/x-pkcs7-signature
 -- File: smime.p7s


 -
 To unsubscribe from this list: send the line unsubscribe xmail in
 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: local mail handling

2002-01-01 Thread Dick van der Kaaden

Usually you can set the email address. With cron for example you can set the
MAILTO in /etc/crontab to cron@domain




- Original Message -
From: Sönke Ruempler [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, January 01, 2002 3:08 PM
Subject: [xmail] local mail handling



 hi there,

 is it possible that xmail sends local emails, even if there is no
@domain
 in the To: line?
 because many system services just write to root, and not to root@domain.

 So xmail could try to send mail to root@RootDomain.

 Here is an email that arived me:

 Failure Reason
 Bad email address
 /Failure Reason

 Below is reported the message header:

  Received: from /spool/local
  by ibis.city-map.de with [XMail 1.3 (Linux/Ix86) LMAIL Server]
  for root from CronDaemon;
  Tue, 01 Jan 2002 00:00:05 +0100
  From: root (Cron Daemon)
  To: root
  X-Cron-Env: SHELL=/bin/bash
  X-Cron-Env: PATH=/sbin:/bin:/usr/sbin:/usr/bin
  X-Cron-Env: MAILTO=root
  X-Cron-Env: HOME=/
  X-Cron-Env: LOGNAME=root



 -- Binary/unsupported file stripped by Listar --
 -- Type: application/x-pkcs7-signature
 -- File: smime.p7s


 -
 To unsubscribe from this list: send the line unsubscribe xmail in
 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: xmails sendmail and apache

2001-12-22 Thread Dick van der Kaaden

Using apache's build in mod_env extension you can set it in httpd.conf.

See http://httpd.apache.org/docs-2.0/mod/mod_env.html#setenv


- Original Message -
From: Sönke Ruempler [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, December 22, 2001 4:49 PM
Subject: [xmail] xmails sendmail and apache



 hi there,

 just found something out:

 if i want to send a mail from apache webserver through xmails sendmail,
the
 xmail sendmail has no ENV MAIL_ROOT, and then does not send the mail.

 does anyone know, how i can tell xmails sendmail where the mailroot is?


 thx soenke


 -- Binary/unsupported file stripped by Listar --
 -- Type: application/x-pkcs7-signature
 -- File: smime.p7s


 -
 To unsubscribe from this list: send the line unsubscribe xmail in
 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: Aliases to external domains ...

2001-12-18 Thread Dick van der Kaaden

Hi,

You can simply store a redirect in a mailproc.tab file in the user
directory.


redirect  [EMAIL PROTECTED]

Dick

- Original Message -
From: Sönke Ruempler [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, December 18, 2001 5:49 PM
Subject: [xmail] Re: Aliases to external domains ...


  | i didn't find a solution to add an alias which would send the
  | email to an external domain (simple forwarding of mail).
 
  You may use custom domains (custdomains.tab) and forward mail for some
  domain to specified SMTP server, e-mail address and lots more.

 exim and sendmail just forward them because t-online.de is not handled
 locally.
 i think that is a standard function for a full featured mail server (?!).

 xmail is build to completely replace sendmail, but without a simple
feature
 like mail-forwarding it has a big disadvantage (the first i found :-)).

 davide: it would be great if you could implement this!

 -
 To unsubscribe from this list: send the line unsubscribe xmail in
 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: Aliases to external domains ...

2001-12-18 Thread Dick van der Kaaden

If you want one solution then just add multiple 'redirect lines' to mailproc
for both internal and external forwards/aliases. That's how we do it.

- Dick


- Original Message -
From: Sönke Ruempler [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, December 18, 2001 8:32 PM
Subject: [xmail] Re: Aliases to external domains ...


  One reaason could be because you can do it without adding extra code.
  Other users are doing it and, as far as i can see, they can survive.
  But, i'll look into it, as i said.

 that would be great - then xmail would be a 100% solution for me and my
 company.
 now i can sleep a bit better - good night :-).

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


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




[xmail] Re: Multiple mx'es with XMail

2001-11-18 Thread Dick van der Kaaden

Jan,

Don't forget to empty the domain.tab. If you don't then all domains
mentioned in this file are not considered custdomains and therefore the
{domain}.tab file in custdomains is not processed.

Dick

- Original Message -
From: Jan Patorra [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, November 18, 2001 11:20 PM
Subject: [xmail] Re: Multiple mx'es with XMail


 hi,

   let's see if i got it, big machine: smtp (mx0) and pop, second / third
   machines: only smtp (mx1, mx2) and sending all their mail to the big
   machine, right ? (got a hint how to manage this config painless ?) :)
 
  I'd suggest setting up secondaries with customdomains with an smtprelay
  line.

 ok, i copy my whole xmail setup to the second machine and there create a
 file named .tab (should handle all domains at a whole) in my custdomains
 directory with the smtprelay line, right ? will this automatically make my
 second machine to a backup mx or do i have to look after some other parts
of
 my config ?
 i understand this in the way that through the custdomains file every
 incoming mail is first intercepted by custdomains before any other
handling
 is done, am i right ?

 bye,
 jan.

 -
 To unsubscribe from this list: send the line unsubscribe xmail in
 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]




Re: New XMail WAI with webmail -- help wanted

2001-11-04 Thread Dick van der Kaaden

For those of you interested, I released a component today that allows you to
use xmail just like you can use the Microsoft smtp server with the Microsoft
CDO component on windows. The only noteworthy difference is that since it is
written in Visual Basic I can not us To as a property. Therefor you have to
use To_ or recipients. If someone of you knows how to fix this then please
let me know.

The source code is available and licenced under the GPL.

You can download this component and/or the source code for it from:

http://www.netrex.nl/xmailstuff/index.html

- Dick

- Original Message -
From: Michal Altair Valasek [EMAIL PROTECTED]
To: 'Dick van der Kaaden' [EMAIL PROTECTED]
Sent: Sunday, November 04, 2001 12:26 AM
Subject: RE: New XMail WAI with webmail -- help wanted


 Hello,

 yes, I have interest. If you can give me your code, it would be very
 appreciated. If it has reasonable size (up to 500 kB), can you send it
 by e-mail? If it is greater, can you put it to some FTP or web site?
 Currently I am sick, in bed and connecting only trough cellular phone so
 is not as simple to download large mail.

 Thanks,

 -- Michal 'Altair' Valasek
Altair Software Production

 [I don't make the rules; I just break
 them.]---
 Webdesign, webhosting, programming - They use the Internet, we live
 there!
 E-mail: [EMAIL PROTECTED] * ICQ: 6160893 * Phone: +420-603-828493
 Corp. WWW: http://www.altair2000.net * Personal:
 http://home.altair2000.net
 _...powered by
 Internet





Re: New XMail WAI with webmail -- help wanted

2001-11-03 Thread Dick van der Kaaden

Michal,

I wrote a component to send email earlier this year but never released it.
It basically mimics the CDO component from microsoft. If you want the source
then let me know and I send it to you. It is written in vb 6 and handles
attachments ,mime and html stuff.

Regards,
Dick


- Original Message -
From: Michal Altair Valasek [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, November 03, 2001 3:53 PM
Subject: New XMail WAI with webmail -- help wanted


 Hi, all.

 I am currently writing new version of my XMail Web Administration
 Interface (http://www.altair2000.net/software/xmail-wai/).

 I want also add the webmail capability to this software. I have very
 simple interface, which cannot handle attachments, html messages,
 non-ascii charsets etc. Is there anyone who can help with these things?
 Basically its about decoding RFC822 message format. Do you have any such
 routines in Visual Basic or VBScript? Are you capable to write it in
 Active Server Pages environment?

 If yes, please contact me trough this list or personally at
 [EMAIL PROTECTED]

 -- Michal 'Altair' Valasek
Altair Software Production

 [I don't make the rules; I just break
 them.]---
 Webdesign, webhosting, programming - They use the Internet, we live
 there!
 E-mail: [EMAIL PROTECTED] * ICQ: 6160893 * Phone: +420-603-828493
 Corp. WWW: http://www.altair2000.net * Personal:
 http://home.altair2000.net
 _...powered by
 Internet





Re: problem message

2001-08-13 Thread Dick van der Kaaden
Title: RE: problem message



Tony,

I can only suggest a few things you could try (you might have 
tried them already...)

You could try todeliver to local accounts. If that works 
then the mailformat is ok and xmail should be able to deliver them to the 
outside world

Have xmail forward mails via a smtp relay 
command:
- first toanother smtp server in your 
office
(this wil tell you xmail can deliver at all)
-if that works then sendto asmtp server 
outside the office on the internet (use a ip address instead of a host name for 
the relay to prevent dns trouble). 
(this will tell you if there is a firewall issue)
- if that works use a hostname instead of a ip address. 

(this will tell you if there is a dns issue)

- Dick


  - Original Message - 
  From: 
  [EMAIL PROTECTED] 
  To: [EMAIL PROTECTED] 
  Sent: Monday, August 13, 2001 10:18 
  PM
  Subject: RE: problem message
  
  I am 
  completely stumped with this one install of xmail. It will NOT send 
  mail. Not to itself, not to the outside. It recieves mail just 
  fine from both the inside and outside. Beleive me - I have stared at the 
  various .tab files for DAYS. Tweaked settings and gotten a variety of 
  different results - from worse to much worse. But nothing I do will make 
  it send.
  
  I 
  have been trying to make this box send mail for over a week - can anyone help? 
  (Its a sad thing to see a grown man beg and cry!)
  
  Tony
  
-Original Message-From: Andrew Jennings 
[mailto:[EMAIL PROTECTED]]Sent: Sunday, August 12, 2001 1:09 
PMTo: XmailSubject: RE: problem 
messageI am using SmartDNS host without problems. I had 
InocuLAN running on the server which was causing the 550 errors. I 
uninstalled it and everything works fine. 


  -Original Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]]Sent: Sunday, August 12, 2001 1:38 
  PMTo: [EMAIL PROTECTED]Subject: RE: problem 
  messageImportance: High
  I have exactly this error message from xmail .74. I 
  have a couple installs that work great - but one NT machine will not send 
  any emails to the outside. It takes several hours - but then the 
  message is returned with: 
  Failure Reason The maximum 
  number of tentatives has been reached /Failure 
  Reason 
  I also deleted the indexes just prior to this error - 
  because I had the same error that Andy had - all accounts would fail to 
  send with a relay prohibited 550.
  It doesnt matter what the outside domain is - they all 
  fail. The host machine can ping, and find mx records for all 
  destination domains just fine.
  Anybody have any ideas? 
  Tony 
  -Original Message- From: 
  Edinilson J. Santos [mailto:[EMAIL PROTECTED]] 
  Sent: Saturday, August 11, 2001 7:29 AM To: Andrew Jennings; Xmail Subject: Re: 
  problem message 
  You (or an user) are sending an email to a network that 
  are unavailable. XMail retries n times and could 
  not reach that network. 
  Edinilson - 
  ATINET-Afiliado UOL de Atibaia Rua Francisco R. Santos, 54 sala 3 ATIBAIA/SP Cep: 12940-250 Tel Voz: (0xx11) 
  4412-0876 http://www.atinet.com.br 
  
  - Original Message - From: 
  "Andrew Jennings" [EMAIL PROTECTED] To: 
  "Edinilson J. Santos" [EMAIL PROTECTED]; "Xmail" 
  [EMAIL PROTECTED] Sent: Saturday, August 11, 2001 9:06 AM Subject: RE: problem message 
  That seemed to take care of the problem. Now I have a new 
  problem. 
  Failure Reason The maximum 
  number of tentatives has been reached /Failure 
  Reason 
  ugh. 
  -Original Message- From: 
  Edinilson J. Santos [mailto:[EMAIL PROTECTED]] 
  Sent: Friday, August 10, 2001 5:14 PM To: Andrew Jennings Subject: Re: problem 
  message Importance: High 
  Try to rebuild the user indexes. Stop XMail and delete all files in the folder 
  mailroot\tabindex 
  Edinilson - 
  ATINET-Afiliado UOL de Atibaia Rua Francisco R. Santos, 54 sala 3 ATIBAIA/SP Cep: 12940-250 Tel Voz: (0xx11) 
  4412-0876 http://www.atinet.com.br 
  
  - Original Message - From: 
  "Andrew Jennings" [EMAIL PROTECTED] To: 
  "Xmail" [EMAIL PROTECTED] Sent: 
  Friday, August 10, 2001 5:51 PM Subject: problem 
  message 
  I am getting: 
  -ERR Invalid auth or access denied 
  on all accounts. I can't seem to figure out what 
  triggers this halt. 
  Has anyone ever seen this problem? 
  Andy