Can I specify two Mail Servers in Mail Server Settings?

Ask a Question related to Coldfusion Server Administration, Design and Development.

  1. #1

    Default Can I specify two Mail Servers in Mail Server Settings?

    I have two Mail Servers and if one go down the other takes over.
    The do not have the same IP or name in DNS.
    This works fine exept in ColdFusion Administrator It's only possible to
    specify one mail server.

    Is there any way to specify two mail servers?

    EINN Guest

  2. Similar Questions and Discussions

    1. Setting up CF mail server to connect to ISP mail server
      I would like to setup a testing evironment and use my ISP's mail server to test and create CF mail applications. When I tried connecting to the...
    2. Server Settings > Mail
      I am using a known good SMTP server which is successfully relaying messages from other servers such as a Windows 2000 server with ColdfusionMX 7 on...
    3. speed of mail() on two servers
      Hello, On 08/26/2003 07:39 PM, David T-G wrote: I think your bottleneck is not in the queuing but rather in the composition of the...
    4. [PHP] speed of mail() on two servers
      I think that may be 'problem' from sendmail .. mail() function under linux only interacts with sendmail, it doesn't contact to the remote SMTP to...
    5. Extra servers in Mail
      I have a little problem. When I set up my outgoing mail server in Mail, I screwed up a few times--so now I have about 10 servers for outgoing mail...
  3. #2

    Default Re: Can I specify two Mail Servers in Mail Server Settings?

    You should be able to set the settings in the cfmail tag.

    Server option cfmail tag

    server
    Optional

    SMTP server address, or (Enterprise edition only) a comma-delimited
    list of server addresses, to use for sending messages. At least one server
    must be specified here or in the ColdFusion MX Administrator. A value here
    overrides the Administrator. A value that includes a port specification
    overrides the port attribute. See the Usage section for details.



    "EINN" <webforumsuser@macromedia.com> wrote in message
    news:dravtl$r6h$1@forums.macromedia.com...
    >I have two Mail Servers and if one go down the other takes over.
    > The do not have the same IP or name in DNS.
    > This works fine exept in ColdFusion Administrator It's only possible to
    > specify one mail server.
    >
    > Is there any way to specify two mail servers?
    >

    Rick Guest

  4. #3

    Default Re: Can I specify two Mail Servers in Mail ServerSettings?

    Ok, so it is only possible in the Enterprise version.
    But does it send to all servers specifyed?

    What I need is:
    -to be able to specify 2 servers.
    -if the first one succseed to send the seccond is not used.

    EINN Guest

  5. #4

    Default Re: Can I specify two Mail Servers in Mail Server Settings?

    Note: If you specify multiple mail servers in ColdFusion MX Standard, the
    cfmail tag uses only the first server in the specification. ColdFusion logs
    a warning message to the mail log file and ignores the additional servers.

    For each server, you can optionally specify a username, password, and port.
    These values override the corresponding attributes, if any. The server
    attribute has the following format:

    [user:password@]server[:port],[user:password@]server[:port],....
    For example, the following line specifies one server, mail.myco.com that
    uses the default port and no user or password, and a second server with a
    user, password, and specific port:

    server=mail.myco.com,mail_admin:adm2qzf@mail2.myco .com:24
    When you specify multiple mail servers in ColdFusion Enterprise, ColdFusion
    tries the available servers in the order they are listed until it connects
    to a server. ColdFusion does not try to connect to a server that was
    unavailable in the last 60 seconds.



    "EINN" <webforumsuser@macromedia.com> wrote in message
    news:drkt15$mb1$1@forums.macromedia.com...
    > Ok, so it is only possible in the Enterprise version.
    > But does it send to all servers specifyed?
    >
    > What I need is:
    > -to be able to specify 2 servers.
    > -if the first one succseed to send the seccond is not used.
    >

    Rick 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