Sendmail: mails rejected with "550-unrouteable mail domain "blade150.lafr.de""

Ask a Question related to Sun Solaris, Design and Development.

  1. #1

    Default Sendmail: mails rejected with "550-unrouteable mail domain "blade150.lafr.de""

    mails sent from my Sun Blade 150 (Solaris 9) via sendmail are rejected
    by the destination mail server with message shown above in the subject line.

    My sendmail.mc file look like this:
    divert(0)dnl
    VERSIONID(`@(#)main.mc 1.5 (Sun) 08/10/00')
    OSTYPE(`solaris8')dnl
    DOMAIN(`solaris-generic')dnl
    FEATURE(`allmasquerade')
    MASQUERADE_AS(lafr.de)dnl
    MAILER(`local')dnl
    MAILER(`smtp')dnl

    I put in the domain name "lafr.de". I thought this will change
    [email]user@host.domain.de[/email] to [email]user@domain.de[/email].
    But it seems that I am missing something else.

    Who can help me ?


    Regards - Frank

    Langelage, Frank Guest

  2. Similar Questions and Discussions

    1. #40481 [NEW]: mail() sends email to wrong address where there are "-" in localpart of "to"
      From: penartur at yandex dot ru Operating system: Linux PHP version: 5.2.1 PHP Bug Type: Mail related Bug description: ...
    2. CFINPUT type="radio" w/ "value" requires "label"
      On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'...
    3. php.ini sendmail settings (was "[PHP] speed of mail() ... ")
      Hi again, everyone -- I have a feeling that our problem is a lousy php.ini configuration. For both module and CLI php we're using...
    4. gotonetpage("mailto:user@domain.com") opens 2 new mails in outlook!!!!!
      Hi there, Perhaps not the best way to send mails in the first place, but Director rewards me with 2 (!!!) new mail messages. NB: I'm using...
    5. "Start" "Program" "Menu" list is empty
      For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your...
  3. #2

    Default Re: Sendmail: mails rejected with "550-unrouteable mail domain "blade150.lafr.de""

    "Langelage, Frank" <frank@lafr.de> writes:
    >mails sent from my Sun Blade 150 (Solaris 9) via sendmail are rejected
    >by the destination mail server with message shown above in the subject line.
    >
    >My sendmail.mc file look like this:
    >divert(0)dnl
    >VERSIONID(`@(#)main.mc 1.5 (Sun) 08/10/00')
    >OSTYPE(`solaris8')dnl
    >DOMAIN(`solaris-generic')dnl
    >FEATURE(`allmasquerade')
    >MASQUERADE_AS(lafr.de)dnl
    >MAILER(`local')dnl
    >MAILER(`smtp')dnl
    >
    >I put in the domain name "lafr.de". I thought this will change
    >user@host.domain.de to [email]user@domain.de[/email].
    >But it seems that I am missing something else.
    >
    According to Section 4.8.4 of the O'Reilly book on Sendmail,
    the FEATURE(`allmasquerade') line should be after the line
    with MASQUERADE_AS(lafr.de). The book also gives examples
    of the MASQUERADE_AS line with the domain name in quotes,
    not bare, like your .mc file has.

    Rather than `allmasquerade', perhaps you want `masquerade_envelope'.

    -Greg
    --
    Do NOT reply via e-mail.
    Reply in the newsgroup.
    Greg Andrews Guest

  4. #3

    Default Re: Sendmail: mails rejected with "550-unrouteable mail domain "blade150.lafr.de""

    In article <bgmnf4$q9old$1@id-48907.news.uni-berlin.de>,
    "Langelage, Frank" <frank@lafr.de> writes:
    > mails sent from my Sun Blade 150 (Solaris 9) via sendmail are rejected
    > by the destination mail server with message shown above in the subject line.
    >
    > My sendmail.mc file look like this:
    > divert(0)dnl
    > VERSIONID(`@(#)main.mc 1.5 (Sun) 08/10/00')
    > OSTYPE(`solaris8')dnl
    > DOMAIN(`solaris-generic')dnl
    > FEATURE(`allmasquerade')
    > MASQUERADE_AS(lafr.de)dnl
    > MAILER(`local')dnl
    > MAILER(`smtp')dnl
    >
    > I put in the domain name "lafr.de". I thought this will change
    > [email]user@host.domain.de[/email] to [email]user@domain.de[/email].
    > But it seems that I am missing something else.
    >
    > Who can help me ?
    Try comp.mail.sendmail instead : >
    Anyway in /usr/lib/mail/README
    have a look at the masquerade_entire_domain section for starters
    Guest

  5. #4

    Default Re: Sendmail: mails rejected with "550-unrouteable mail domain "blade150.lafr.de""

    Greg Andrews wrote:
    > "Langelage, Frank" <frank@lafr.de> writes:
    >
    >>mails sent from my Sun Blade 150 (Solaris 9) via sendmail are rejected
    >>by the destination mail server with message shown above in the subject line.
    >>
    >>My sendmail.mc file look like this:
    >>divert(0)dnl
    >>VERSIONID(`@(#)main.mc 1.5 (Sun) 08/10/00')
    >>OSTYPE(`solaris8')dnl
    >>DOMAIN(`solaris-generic')dnl
    >>FEATURE(`allmasquerade')
    >>MASQUERADE_AS(lafr.de)dnl
    >>MAILER(`local')dnl
    >>MAILER(`smtp')dnl
    >>
    >>I put in the domain name "lafr.de". I thought this will change
    >>user@host.domain.de to [email]user@domain.de[/email].
    >>But it seems that I am missing something else.
    >>
    >
    >
    > According to Section 4.8.4 of the O'Reilly book on Sendmail,
    > the FEATURE(`allmasquerade') line should be after the line
    > with MASQUERADE_AS(lafr.de). The book also gives examples
    > of the MASQUERADE_AS line with the domain name in quotes,
    > not bare, like your .mc file has.
    >
    > Rather than `allmasquerade', perhaps you want `masquerade_envelope'.
    >
    > -Greg
    Based on subsidiary.mc I now have these lines in my .mc file:

    divert(0)dnl
    VERSIONID(`@(#)subsidiary.mc 1.10 (Sun) 12/14/00')
    OSTYPE(`solaris8')dnl
    DOMAIN(`solaris-generic')dnl
    define(`SMART_HOST', `mail.osnanet.de')
    MASQUERADE_AS(`lafr.de')dnl
    FEATURE(`masquerade_envelope')dnl
    MAILER(`local')dnl
    MAILER(`smtp')dnl

    LOCAL_NET_CONFIG
    R$* < @ $* .$m. > $* $#esmtp $@ $2.$m $: $1 < @ $2.$m. > $3


    This works now.

    Thanks for your help.


    Regards - Frank

    Langelage, Frank Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139