Where to check log of sendmail?

Where are the logs? The default location depends on your linux/unix system, but the most common places are /var/log/maillog /var/log/mail.log /var/adm/maillog /var/adm/syslog/mail.log If it’s not there, look up /etc/syslog.conf. You should see something like this mail.* -/var/log/maillog sendmail writes logs to the mail facility of syslog. Therefore, which file it gets written to depends on … Read more

VBScript to send email without running Outlook

You can send email without Outlook in VBScript using the CDO.Message object. You will need to know the address of your SMTP server to use this: If your SMTP server requires a username and password then paste these lines in above the MyEmail.Configuration.Fields.Update line: More information on using CDO to send email with VBScript can … Read more

Sending mail error, javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25;

Error is self explainatory: javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25; You have no SMTP server on localhost, but you configure it there : So you must: either configure a local SMTP server as a relay on your local system (Postfix or sendmail are two well knows servers) of configure a dummy server that simply … Read more