[xmail] Re: Error message

2003-03-23 Thread Ken

--- Davide Libenzi [EMAIL PROTECTED] wrote:

 Can you show me the result of :
 
 # ls -l /usr/sbin/sendmail
 
 
 
 - Davide

-rw-r--r--  1 root  bin  12288 Mar 23 13:19 /usr/sbin/sendmail

- Ken

__
Do you Yahoo!?
Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop!
http://platinum.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]



[xmail] Re: CDONTS and Xmail

2003-03-23 Thread Serbulent Sertoglu

Thanks Frederik but I colud not understand exactly what are going to do
and what should I send to you? In the bad mail directory a bdr file is
created for mails that cannot be send, saying:



Unable to deliver this message because the follow error was encountered:
This message is a delivery status notification that cannot be
delivered..

The specific error code was 0xC00402C7.


The message sender was .


The message was intended for the following recipients.
[EMAIL PROTECTED]


-

And in the event log SMTPSVC errors with event ID 4000 are dropped,
saying:

Message delivery to the remote domain 'kalan.com' failed for the
following reason: Unable to deliver the message because the destination
address was misconfigured as a mail loop.


Hope these help..

Thank your very much...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Frederik Gallon
Sent: Sunday, March 23, 2003 9:09 AM
To: '[EMAIL PROTECTED]'
Subject: [xmail] Re: CDONTS and Xmail


I would try to simulate behaviour trough telnet sessions...
Send the errors back here

Frederik

-Oorspronkelijk bericht-
Van: Serbulent Sertoglu [mailto:[EMAIL PROTECTED] 
Verzonden: zondag 23 maart 2003 2:49
Aan: [EMAIL PROTECTED]
Onderwerp: [xmail] CDONTS and Xmail


Hi,
I have a problem about sending mails with CDONTS (from ASP scripts) to
domains on Xmail located on the same host. To clarify, I have IIS and
Xmail
on the same server and altough the mails asp scripts send to remote
domains
are successfull,  mails sent to domains on Xmail are dropped to badmail
directory of CDONTS. Is there anything I have to consider related to
xmail
or is this all with IIS virtual SMTP? 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]



[xmail] Re: CDONTS and Xmail

2003-03-23 Thread Wim Verveen

To make a long story short, I just use CDONTS to send directly to an SMTP
host. Always works.

Function STDSendMessage (Mailfrom,Mailto,Mailsubject,Mailbody)

Dim iMsg,iConf,Flds

oLog.write loginfo, Starting to send message
oLog.write loginfo, Mailto :   Mailto
oLog.write loginfo, Subject:   Mailsubject

Set iMsg = CreateObject(CDO.Message)
Set iConf = CreateObject(CDO.Configuration)
Set Flds = iConf.Fields

With Flds
  ' Its good practice to use the module constants defined in the
  ' type library for the names.  The full names are used here to
  ' indicate that this is what is going on
  .Item(http://schemas.microsoft.com/cdo/configuration/smtpserver;)= host
  .Item(http://schemas.microsoft.com/cdo/configuration/sendusing;)  = 2
  .Update
End With

Set iMsg.Configuration = iConf

'Create your textbody here


With iMsg
  .To= mailto
  .From  = mailfrom
  .Subject= mailsubject
  .TextBody  = Mailbody
  .Fields.Update
  .Send
End With
if Err.number  0 then 
  oLog.write LogError, Sending message failed
  oLog.write Logerror, Err.number  :  Err.description
  STDSendmessage = 1
else
  oLog.write Loginfo, Message Send
  STDSendmessage = 0
end if  


Set iMsg = Nothing

end function

 -Oorspronkelijk bericht-
 Van: Serbulent Sertoglu [mailto:[EMAIL PROTECTED]
 Verzonden: zondag 23 maart 2003 2:49
 Aan: [EMAIL PROTECTED]
 Onderwerp: [xmail] CDONTS and Xmail
 
 
 Hi,
 I have a problem about sending mails with CDONTS (from ASP scripts) to
 domains on Xmail located on the same host. To clarify, I have IIS and
 Xmail on the same server and altough the mails asp scripts send to
 remote domains are successfull,  mails sent to domains on Xmail are
 dropped to badmail directory of CDONTS. Is there anything I have to
 consider related to xmail or is this all with IIS virtual SMTP? 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: CDONTS and Xmail

2003-03-23 Thread Michael Schwarz

Hi Wim

have you enabled local delivery in smtprelay.tab in Xmail?

Bye
Michael


 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Wim Verveen
 Sent: Monday, March 24, 2003 8:25 AM
 To: '[EMAIL PROTECTED]'
 Subject: [xmail] Re: CDONTS and Xmail
 
 
 
 To make a long story short, I just use CDONTS to send 
 directly to an SMTP
 host. Always works.
 
 Function STDSendMessage (Mailfrom,Mailto,Mailsubject,Mailbody)
 
 Dim iMsg,iConf,Flds
 
 oLog.write loginfo, Starting to send message
 oLog.write loginfo, Mailto :   Mailto
 oLog.write loginfo, Subject:   Mailsubject
 
 Set iMsg = CreateObject(CDO.Message)
 Set iConf = CreateObject(CDO.Configuration)
 Set Flds = iConf.Fields
 
 With Flds
   ' Its good practice to use the module constants defined in the
   ' type library for the names.  The full names are used here to
   ' indicate that this is what is going on
   
 .Item(http://schemas.microsoft.com/cdo/configuration/smtpserv
 er)= host
   
 .Item(http://schemas.microsoft.com/cdo/configuration/sendusing;)  = 2
   .Update
 End With
 
 Set iMsg.Configuration = iConf
 
 'Create your textbody here
 
 
 With iMsg
   .To= mailto
   .From  = mailfrom
   .Subject= mailsubject
   .TextBody  = Mailbody
   .Fields.Update
   .Send
 End With
 if Err.number  0 then 
   oLog.write LogError, Sending message failed
   oLog.write Logerror, Err.number  :  Err.description
   STDSendmessage = 1
 else
   oLog.write Loginfo, Message Send
   STDSendmessage = 0
 end if  
 
 
 Set iMsg = Nothing
 
 end function
 
  -Oorspronkelijk bericht-
  Van: Serbulent Sertoglu [mailto:[EMAIL PROTECTED]
  Verzonden: zondag 23 maart 2003 2:49
  Aan: [EMAIL PROTECTED]
  Onderwerp: [xmail] CDONTS and Xmail
  
  
  Hi,
  I have a problem about sending mails with CDONTS (from ASP 
 scripts) to
  domains on Xmail located on the same host. To clarify, I 
 have IIS and
  Xmail on the same server and altough the mails asp scripts send to
  remote domains are successfull,  mails sent to domains on Xmail are
  dropped to badmail directory of CDONTS. Is there anything I have to
  consider related to xmail or is this all with IIS virtual SMTP? 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]



[xmail] POP3 Link checking frequency

2003-03-23 Thread William Denniss

Is there any way to change the frequency that the external mailboxes are=20
checked?  I have a problem where we have several links to the one externa=
l=20
server and that server will only allow a certain number of connections fr=
om=20
the one IP address in any given time.

Thanks

Will.

--=20
William Denniss - will@: http://www.omegadelta.net

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