Advertisement
Guest User

Postfix Spanish and english bounce template

a guest
Jan 21st, 2014
534
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.41 KB | None | 0 0
  1. #
  2. # The failure template is used when mail is returned to the sender;
  3. # either the destination rejected the message, or the destination
  4. # could not be reached before the message expired in the queue.
  5. #
  6.  
  7. failure_template = <<EOF
  8. Charset: utf-8
  9. From: MAILER-DAEMON (Sistema de entrega de correo)
  10. Subject: Servidor de correo: Mensaje no entregado
  11. Postmaster-Subject: Servidor de correo: Mensaje no entregado
  12.  
  13.  
  14. Este es un mensaje automático de tu servidor de correo $myhostname.
  15.  
  16. No ha sido posible entregar tu mensaje a uno o más destinatarios.
  17. El mensaje que causó el error está adjunto a este mensaje.
  18.  
  19.  
  20. Para más información, envíe un mensaje al administrador: soporte@gestudio.com
  21.  
  22.  
  23. En tal caso incluya adjunto este mensaje de informe. Puede eliminar el
  24. texto del mensaje original que considere, aunque le recomendamos que
  25. mantenga intacto el texto de este informe.
  26.  
  27.  
  28.  
  29. --
  30. English:
  31.  
  32. This is the mail system at host $myhostname.
  33.  
  34. I'm sorry to have to inform you that your message could not
  35. be delivered to one or more recipients. It's attached below.
  36.  
  37. For further assistance, please send mail to soporte@gestudio.com
  38.  
  39.  
  40.  
  41. EOF
  42.  
  43. #
  44. # The delay template is used when mail is delayed. Note a neat trick:
  45. # the default template displays the delay_warning_time value as hours
  46. # by appending the _hours suffix to the parameter name; it displays
  47. # the maximal_queue_lifetime value as days by appending the _days
  48. # suffix.
  49. #
  50. # Other suffixes are: _seconds, _minutes, _weeks. There are no other
  51. # main.cf parameters that have this special behavior.
  52. #
  53. # You need to adjust these suffixes (and the surrounding text) if
  54. # you have very different settings for these time parameters.
  55. #
  56.  
  57. delay_template = <<EOF
  58. Charset: utf-8
  59. From: MAILER-DAEMON (Sistema de entrega de correo)
  60. Subject: Servidor de correo: Mensaje pospuesto
  61. Postmaster-Subject: Servidor de correo: Mensaje pospuesto
  62.  
  63. Este es un mensaje de correo enviado automáticamente por el servidor de
  64. correo $myhostname.
  65.  
  66. ###########################################
  67. # ESTE ES SOLO UN MENSAJE DE AVISO. #
  68. # NO ES NECESARIO QUE REENVIE EL MENSAJE. #
  69. ###########################################
  70.  
  71. Su mensaje no pudo ser entregado al destinatario después de intentarlo
  72. durante $delay_warning_time_hours hora(s).
  73. Se seguirá intentando enviar el mensaje hasta que pasen
  74. $maximal_queue_lifetime_days días.
  75.  
  76. Para más información o cualquier duda, por favor, envíe un mensaje al
  77. administrador del sistema en <postmaster>.
  78.  
  79. En tal caso incluya adjunto este mensaje de informe. Puede eliminar el
  80. texto del mensaje original que considere, aunque le recomendamos que
  81. mantenga intacto el texto de este informe.
  82.  
  83. -------------------------------------------------------------------------------
  84.  
  85. This is the mail system at host $myhostname.
  86.  
  87. ####################################################################
  88. # THIS IS A WARNING ONLY. YOU DO NOT NEED TO RESEND YOUR MESSAGE. #
  89. ####################################################################
  90.  
  91. Your message could not be delivered for $delay_warning_time_hours hour(s).
  92. It will be retried until it is $maximal_queue_lifetime_days day(s) old.
  93.  
  94. For further assistance, please send mail to <postmaster>
  95.  
  96. If you do so, please include this problem report. You can
  97. delete your own text from the attached returned message.
  98.  
  99. The $mail_name program
  100. EOF
  101.  
  102. #
  103. # The success template is used when mail is delivered to mailbox,
  104. # when an alias or list is expanded, or when mail is delivered to a
  105. # system that does not announce DSN support. It is an error to specify
  106. # a Postmaster-Subject: here.
  107. #
  108.  
  109. success_template = <<EOF
  110. Charset: utf-8
  111. From: MAILER-DAEMON (Sistema de entrega de correo)
  112. Subject: Servidor de correo: Informe de entrega correcta de mensaje
  113.  
  114. Este es un mensaje de correo enviado automáticamente por el servidor de
  115. correo $myhostname.
  116.  
  117. Su mensaje fue entregado correctamente al/a los destinatario/s indicados a
  118. continuación. Si el mensaje fue entregado directamente a los destinatarios,
  119. no recibirá más notificaciones; en caso contrario, si el mensaje tuviera que
  120. pasar por más servidores de correo, es posible que reciba más notificaciones
  121. de estos servidores.
  122.  
  123. -------------------------------------------------------------------------------
  124.  
  125. This is the mail system at host $myhostname.
  126.  
  127. Your message was successfully delivered to the destination(s)
  128. listed below. If the message was delivered to mailbox you will
  129. receive no further notifications. Otherwise you may still receive
  130. notifications of mail delivery errors from other systems.
  131.  
  132. The mail system
  133. EOF
  134.  
  135. #
  136. # The verify template is used for address verification (sendmail -bv
  137. # address...). or for verbose mail delivery (sendmail -v address...).
  138. # It is an error to specify a Postmaster-Subject: here.
  139. #
  140.  
  141.  
  142. verify_template = <<EOF
  143.  
  144. Charset: utf-8
  145. From: MAILER-DAEMON (Sistema de entrega de correo)
  146. Subject: Servidor de correo: Informe de estado de entrega de mensaje
  147.  
  148. Este es un mensaje de correo enviado automáticamente por el servidor de
  149. correo $myhostname.
  150.  
  151. Adjunto a este mensaje se encuentra el informe de entrega solicitado.
  152.  
  153. -------------------------------------------------------------------------------
  154.  
  155. This is the mail system at host $myhostname.
  156.  
  157.  
  158. Enclosed is the mail delivery report that you requested.
  159.  
  160. The mail system
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement