Mail tranmission issue: Postfix/Sendmail


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Mail tranmission issue: Postfix/Sendmail
# 1  
Old 01-27-2010
Mail tranmission issue: Postfix/Sendmail

Hi,

I have email that is being routed from one server to another server it seems.
The sending server has postfix running and the receiving server has sendmail running. The sendmail status is receiving connection. The sending server cannot seem to reach the receiving server. Error logs state that the connection is refused. What could be the problem?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

French characters in postfix/sendmail

Hello again, How can I send emails via postfix with special characters like "à" via postfix. When I'm paste-ing the special character inside a editor (nano) it shows like this --> � ... any tips? (1 Reply)
Discussion started by: galford
1 Replies

2. UNIX for Dummies Questions & Answers

ACL for postfix or sendmail

Hello, i want to know how to configure a MTA to relay somes domain by IP source, example : toto.com and titi.com can relay with ip sender 10.2.2.0/24 only lulu.com can relay with ip sender 192.168.0.4/32 only all domain can relay with ip sender 172.0.0.5/32 only It's possible with policy... (9 Replies)
Discussion started by: safsound
9 Replies

3. Solaris

Replace sendmail with Postfix

Hi, I am assigned to replace sendmail with Postfix in solaris 10. Can anyone please tell what are the steps should be taken like files to backup and what are the configurations should be taken care and so on??????? Appreciate any help.... (0 Replies)
Discussion started by: bpsunadm
0 Replies

4. UNIX for Dummies Questions & Answers

Please help with Postfix config issue - How to allow remote Exchange server to relay to my postfix

Hi guys One of our clients have a problem with sending email to a certain domain. No matter what we try, the mails just dont get delivered. What I did then, is created a new connector on their Exchange server, pointing all mail sent to their client at "domain1" to relay to our Postfix mail... (0 Replies)
Discussion started by: wbdevilliers
0 Replies

5. IP Networking

postfix - reinject mail to postfix from hold queue directory

hi all. Am using smtpd_recipient_restrictions & check_recipient_access in postfix. The hash file looks like this: emailaddress1 HOLD emailaddress2 HOLD The aim is to place email from these recipients in the hold directory,check them then reinject them back in postfix on some... (0 Replies)
Discussion started by: coolatt
0 Replies

6. OS X (Apple)

postfix queue filling up (from sendmail?)

What is filling up my postfix queue (/var/spool/postfix/deferred/)? I had a perl script running via crontab to monitor my IP connection and send me a mail via sendmail. Now I have a huge queue of emails I keep getting. I've removed the crontab and the script. If I clear out... (1 Reply)
Discussion started by: kumakuma
1 Replies

7. UNIX for Dummies Questions & Answers

postfix queue filling up (from sendmail?)

What is filling up my postfix queue (/var/spool/postfix/deferred/)? I had a perl script running via crontab to monitor my IP connection and send me a mail via sendmail. Now I have a huge queue of emails I keep getting. I've removed the crontab and the script. If I clear out... (0 Replies)
Discussion started by: kumakuma
0 Replies

8. UNIX for Dummies Questions & Answers

Currupt Mail issue in sendmail

I am using sendmail on salaris 9. This server gets a heavy load of emails as big as 100 mb. i nedd suggestion on two issues.1st what can be the most common reason for frequent mail cuurption. 2nd how to fix a currupt email. the method i know is vi and deltting the lines till From is the 1st word of... (0 Replies)
Discussion started by: mazharhasan
0 Replies

9. UNIX for Dummies Questions & Answers

Postfix Problem under mailx/sendmail command

Update: Problem solved with this command: /opt/soc/bin/postfix-setup ================================ Hi, I am trying the following mailx command: sadm@edwardwi-z:/etc$ mailx ewijaya@gmail.com Subject: test foo . . EOT But it gives the following error ... (0 Replies)
Discussion started by: monkfan
0 Replies

10. News, Links, Events and Announcements

Linux mail servers benchmarks (Qmail, Sendmail,Postfix)

New Linux mail servers benchmarks website. Check out http://benchmarks.dmz.ro . (0 Replies)
Discussion started by: cipango
0 Replies
Login or Register to Ask a Question
Mail::Transport(3pm)					User Contributed Perl Documentation				      Mail::Transport(3pm)

NAME
Mail::Transport - base class for message exchange INHERITANCE
Mail::Transport is a Mail::Reporter Mail::Transport is extended by Mail::Transport::Receive Mail::Transport::Send SYNOPSIS
my $message = Mail::Message->new(...); # Some extensions implement sending: $message->send; $message->send(via => 'sendmail'); my $sender = Mail::Transport::SMTP->new(...); $sender->send($message); # Some extensions implement receiving: my $receiver = Mail::Transport::POP3->new(...); $message = $receiver->receive; DESCRIPTION
Objects which extend "Mail::Transport" implement sending and/or receiving of messages, using various protocols. Mail::Transport::Send extends this class, and offers general functionality for send protocols, like SMTP. Mail::Transport::Receive also extends this class, and offers receive method. Some transport protocols will implement both sending and receiving. METHODS
Constructors Mail::Transport->new(OPTIONS) -Option --Defined in --Default executable undef hostname 'localhost' interval 30 log Mail::Reporter 'WARNINGS' password undef port undef proxy undef retry <false> timeout 120 trace Mail::Reporter 'WARNINGS' username undef via 'sendmail' executable => FILENAME If you specify an executable, the module does not need to search the system directories to figure-out where the client lives. Using this decreases the flexible usage of your program: moving your program to other systems may involve changing the path to the executable, which otherwise would work auto-detect and unmodified. hostname => HOSTNAME|ARRAY-OF-HOSTNAMES The host on which the server runs. Some protocols accept an array of alternatives for this option. interval => SECONDS The time between tries to contact the remote server for sending or receiving a message in SECONDS. This number must be larger than 0. log => LEVEL password => STRING Some protocols require a password to be given, usually in combination with a password. port => INTEGER The port number behind which the service is hiding on the remote server. proxy => PATH The name of the proxy software (the protocol handler). This must be the name (preferable the absolute path) of your mail delivery software. retry => NUMBER|undef The number of retries before the sending will fail. If "undef", the number of retries is unlimited. timeout => SECONDS SECONDS till time-out while establishing the connection to a remote server. trace => LEVEL username => STRING Some protocols require a user to login. via => CLASS|NAME Which CLASS (extending "Mail::Transport") will transport the data. Some predefined NAMEs avoid long class names: "mail" and "mailx" are handled by the Mail::Transport::Mailx module, "sendmail" and "postfix" belong to Mail::Transport::Sendmail, and "smtp" is implemented in Mail::Transport::SMTP. The "pop" or "pop3" protocol implementation can be found in Mail::Transport::POP3. Server connection $obj->findBinary(NAME [, DIRECTORIES]) Look for a binary with the specified NAME in the directories which are defined to be safe. The list of standard directories is followed by the optional DIRECTORIES. The full pathname is returned. You may specify new(proxy), which specifies the absolute name of the binary to be used. $obj->remoteHost() Returns the hostname, port number, username and password to be used to establish the connection to the server for sending or receiving mail. $obj->retry() Returns the retry interval, retry count, and timeout for the connection. Error handling $obj->AUTOLOAD() See "Error handling" in Mail::Reporter $obj->addReport(OBJECT) See "Error handling" in Mail::Reporter $obj->defaultTrace([LEVEL]|[LOGLEVEL, TRACELEVEL]|[LEVEL, CALLBACK]) Mail::Transport->defaultTrace([LEVEL]|[LOGLEVEL, TRACELEVEL]|[LEVEL, CALLBACK]) See "Error handling" in Mail::Reporter $obj->errors() See "Error handling" in Mail::Reporter $obj->log([LEVEL [,STRINGS]]) Mail::Transport->log([LEVEL [,STRINGS]]) See "Error handling" in Mail::Reporter $obj->logPriority(LEVEL) Mail::Transport->logPriority(LEVEL) See "Error handling" in Mail::Reporter $obj->logSettings() See "Error handling" in Mail::Reporter $obj->notImplemented() See "Error handling" in Mail::Reporter $obj->report([LEVEL]) See "Error handling" in Mail::Reporter $obj->reportAll([LEVEL]) See "Error handling" in Mail::Reporter $obj->trace([LEVEL]) See "Error handling" in Mail::Reporter $obj->warnings() See "Error handling" in Mail::Reporter Cleanup $obj->DESTROY() See "Cleanup" in Mail::Reporter $obj->inGlobalDestruction() See "Cleanup" in Mail::Reporter DIAGNOSTICS
Warning: Avoid program abuse: specify an absolute path for $exec. Specifying explicit locations for executables of email transfer agents should only be done with absolute file names, to avoid various pontential security problems. Warning: Executable $exec does not exist. The explicitly indicated mail transfer agent does not exists. The normal settings are used to find the correct location. Error: Package $package does not implement $method. Fatal error: the specific package (or one of its superclasses) does not implement this method where it should. This message means that some other related classes do implement this method however the class at hand does not. Probably you should investigate this and probably inform the author of the package. SEE ALSO
This module is part of Mail-Box distribution version 2.105, built on May 07, 2012. Website: http://perl.overmeer.net/mailbox/ LICENSE
Copyrights 2001-2012 by [Mark Overmeer]. For other contributors see ChangeLog. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html perl v5.14.2 2012-05-07 Mail::Transport(3pm)