doublebounce.pl
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:6k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. #!/usr/bin/perl
  2. # doublebounce.pl
  3. # attempt to return a doubly-bounced email to a postmaster
  4. # jr@terra.net, 12/4/97
  5. #
  6. # invoke by creating an mail alias such as:
  7. # doublebounce: "|/usr/local/sbin/doublebounce"
  8. # then adding this line to your sendmail.cf:
  9. # O DoubleBounceAddress=doublebounce
  10. #
  11. # optionally, add a "-d" flag in the aliases file, to send a
  12. # debug trace to your own postmaster showing what is going on
  13. #
  14. # this allows the "postmaster" address to still go to a human being,
  15. # while bounce messages can go to this script, which will bounce them
  16. # back to the postmaster at the sending site.
  17. #
  18. # the algorithm is to scan the double-bounce error report generated
  19. # by sendmail on stdin, for the original message (it starts after the
  20. # second "Orignal message follows" marker), look for From, Sender, and
  21. # Received headers from the point closest to the sender back to the point
  22. # closest to us, and try to deliver a double-bounce report back to a
  23. # postmaster at one of these sites in the hope that they can
  24. # return the message to the original sender, or do something about
  25. # the fact that that sender's return address is not valid.
  26. use Socket;
  27. # look for debug flag
  28. #
  29. $dflag = 0;
  30. $dflag = 1 if ($ARGV[0] eq "-d");
  31. # get local host name
  32. # you may need to edit these two lines for however your system does this
  33. #
  34. $host = `hostname`; chop($host);
  35. $domain = `dnsdomainname`; chop($domain);
  36. # get temp file name
  37. $tmp = "/tmp/doubb$$";
  38. # save message from STDIN to a file
  39. # I thought about reading it into a buffer here, but some messages
  40. # are 10+Mb so a buffer may not be a good idea
  41. #
  42. if (! open(MSG, "+> $tmp")) {
  43. # can't open temp file -- send message to local postmaster
  44. # open(MAIL, "| /usr/sbin/sendmail -oeq postmaster");
  45. print MAIL <STDIN>;
  46. close(MAIL);
  47. exit(1);
  48. }
  49. print MSG <STDIN>;
  50. # scan message for list of possible sender sites
  51. # note that original message appears after the second
  52. # "Original message follows" marker
  53. # look for From, Sender, and Reply-To and try them, too
  54. #
  55. $inhdr = 0;
  56. $hdrs = 0;
  57. $skip = 0;
  58. seek(MSG, 0, 0);
  59. while (<MSG>) {
  60. chop;
  61. if (/^   ----- Original message follows -----$/
  62.      || /^   ----Unsent message follows----$/) {
  63. $i = 0;
  64. $inhdr = 1;
  65. $hdrs++;
  66. $skip = 1;
  67. next;
  68. }
  69. if ($skip) {
  70. $skip--;
  71. next;
  72. }
  73. if (/^$/) {
  74. last if ($hdrs >= 2);
  75. $inhdr = 0;
  76. next;
  77. }
  78. if (! $inhdr) {
  79. next;
  80. }
  81. if (! /^[ t]/) { $hdr[$i++] = $_ }
  82. else {
  83. $i--;
  84. $hdr[$i++] .= $_;
  85. }
  86. }
  87. $rcvd = 0;
  88. for ($j = 0; $j < $i; $j++) {
  89. print STDERR "DEBUG hdr[$j] = $hdr[$j]n";
  90. if ($hdr[$j] =~ /^received:/i) {
  91. ($addr[$rcvd++]) = $hdr[$j] =~ m/.*sbys([^s]+)s.*/;
  92. }
  93. if ($hdr[$j] =~ /^reply-to:/i) {
  94. ($addr1{"reply-to"} = $hdr[$j]) =~ s/^reply-to: *//i;
  95. }
  96. if ($hdr[$j] =~ /^sender:/i) {
  97. ($addr1{"sender"} = $hdr[$j]) =~ s/^sender: *//i;
  98. }
  99. if ($hdr[$j] =~ /^from:/i) {
  100. ($addr1{"from"} = $hdr[$j]) =~ s/^from: *//i;
  101. }
  102. }
  103. # %addr and %addr1 arrays now contain lists of possible sites (or From headers).
  104. # Go through them parsing for the site name, and attempting to send
  105. # to the named person or postmaster@ each site in turn until successful
  106. #
  107. if ($dflag) {
  108. open(DEBUG, "|/usr/sbin/sendmail postmaster");
  109. print DEBUG "Subject: double bounce dialogn";
  110. }
  111. $sent = 0;
  112. # foreach $x ("from", "sender", "reply-to") {
  113. foreach $x ("from", "sender") {
  114. $y = &parseaddr($addr1{$x});
  115. if ($y) {
  116. print DEBUG "Trying $yn" if ($dflag);
  117. if (&sendbounce("$y")) {
  118. $sent++;
  119. last;
  120. }
  121. $y =~ s/.*@//;
  122. print DEBUG "Trying postmaster@$yn" if ($dflag);
  123. if (&sendbounce("postmaster@$y")) {
  124. $sent++;
  125. last;
  126. }
  127. }
  128. }
  129. if (! $sent) {
  130. $rcvd--;
  131. for ($i = $rcvd; $i >= 0; $i--) {
  132. $y = &parseaddr($addr[$i]);
  133. $y =~ s/.*@//;
  134. if ($y) {
  135. print DEBUG "Trying postmaster@$yn" if ($dflag);
  136. if (&sendbounce("postmaster@$y")) {
  137. $sent++;
  138. last;
  139. }
  140. }
  141. }
  142. }
  143. if (! $sent) {
  144. # queer things are happening to me
  145. # $addr[0] should be own domain, so we should have just
  146. # tried postmaster@our.domain.  theoretically, we should
  147. # not get here...
  148. if ($dflag) {
  149. print DEBUG "queer things are happening to men";
  150. print DEBUG "Trying postmastern";
  151. }
  152. &sendbounce("postmaster");
  153. }
  154. # clean up and get out
  155. #
  156. if ($dflag) {
  157. seek(MSG, 0, 0);
  158. print DEBUG "n---n"; print DEBUG <MSG>;
  159. close(DEBUG);
  160. }
  161. close(MSG);
  162. unlink("$tmp");
  163. exit(0);
  164. # parseaddr()
  165. # parse hostname from From: header
  166. #
  167. sub parseaddr {
  168. local($hdr) = @_;
  169. local($addr);
  170. if ($hdr =~ /<.*>/) {
  171. ($addr) = $hdr =~ m/<(.*)>/;
  172. return $addr;
  173. }
  174. if ($addr =~ /s*(/) {
  175. ($addr) = $hdr =~ m/s*(.*)s*(/;
  176. return $addr;
  177. }
  178. ($addr) = $hdr =~ m/s*(.*)s*/;
  179. return $addr;
  180. }
  181. # sendbounce()
  182. # send bounce to postmaster
  183. #
  184. # this re-invokes sendmail in immediate and quiet mode to try
  185. # to deliver to a postmaster.  sendmail's exit status tells us
  186. # wether the delivery attempt really was successful.
  187. #
  188. sub sendbounce {
  189. local($dest) = @_;
  190. local($st);
  191. open(MAIL, "| /usr/sbin/sendmail -ocn -odi -oeq $dest");
  192. print MAIL <<EOT;
  193. From: Mail Delivery Subsystem <mail-router@$domain>
  194. Subject: Postmaster notify: double bounce
  195. Reply-To: nobody@$domain
  196. Errors-To: nobody@$domain
  197. Precedence: junk
  198. Auto-Submitted: auto-generated (postmaster notification)
  199. The following message was received at $host.$domain for an invalid
  200. recipient.  The sender's address was also invalid.  Since the message
  201. originated at or transited through your mailer, this notification is being
  202. sent to you in the hope that you will determine the real originator and
  203. have them correct their From or Sender address.
  204. The invalid sender address was: $addr1{"from"}.
  205.    ----- The following is a double bounce at $host.$domain -----
  206. EOT
  207. seek(MSG, 0, 0);
  208. print MAIL <MSG>;
  209. return close(MAIL);
  210. }