MX records for email - how do I set it up with Godaddy info?

This is the info I got from Godaddy:
Priority      Points to:                                        TTL
10               mailstore1.secureserver.net           1 HOUR
0                 smtp.secureserver.net                    1 hour
Godaddy says I need to include both.
But when I do the steps from Adobe, it only lets me add 1 mail server... so... how can I add both of them?
Business Catalyst Help | Use an external email provider

Hi!
Just go to your domains page and add a new MX record: http://prntscr.com/64jmbc
Kind Regards,
Alex

Similar Messages

  • In icloud for email, how do I set preferences to make copy 18 pt and to automatically cc emails to my own addy?

    This is far more confusing than I want it to be. I want to set the preferences on my icloud email so the body type is 18 pt. And I want to automatically cc all emails I send to my email addy so I have a copy. I was set up to do this before I was forced to swithchover to icloud. How do I make these preference changes? Also, is their an auto spell check? If so, how do I turn that on? It's apparentlllly nottt working on this postttt. And I might as well ask this question, too, as I kinda stumbled into this. Now that I am on iclound, will I have to do anything with the photos on my computer that I have saved in iphoto? And does someone actually answer these questions?

    To alter the font, in the composing screen click the Show format bar icon. A
    Adjust format for this email. 

  • I have two time capsules, one for work and one for home, how do I set up the work time capsule to only back up my work files?

    I have two time capsules, one for work and one for home, how do I set up the work time capsule to only back up my work files?  Also, how do I add co-workers to my work time capsule and wife to my home time capsule?  Thank you!

    You cannot have two different TC setups.. at least until Mountain Lion.. it did introduce some changes but I am not sure if you can setup two different configurations for TM.. you can use two different devices to back up to. I doubt this will help you.
    You might be better using a real backup software.. superduper, CCC, chronosync etc.
    The TC by default is available to any Mac in the network to do backups. TM will sort itself out and put each computer on a different backup. These are kept in separate sparsebundles.. so that is all fine.

  • I have family plan of 5 iphones and all them have the same apple id, the q. is how I can set each one with their own apple id? please advise...

    I have family plan of 5 iphones and all them have the same apple id, the q. is how I can set each one with their own apple id? please advise...

    See How to Stop Sharing an Apple ID.
    (Note that I am affiliated with that site, and some pages contain ads).

  • I have 2 Apple iPads with the same Apple account name.  How do I set up one with a different Apple account name?

    I have 2 iPads with the same Apple account name.  How do I set up one with a different Apple name?

    Why is the reason you want a different apple id on them? Need more details to make sure we don't accidently set up the self destruct feature and destory the planet.

  • How can I set up iCloud with my Apple ID

    i bought an Ipad on an rummage sale.  The iCloud is still registered under the previous owner.  I do not know their password (nor them) and an "find my ipad" is turned on.  How can I set up iCloud with my Apple ID?

    Restore it through iTunes
    Regards,

  • HT1146 microsoft Outlook for MAC, how can I set "receive notification email sent has been opened and read" in Outlook?  Thanks

    Microsoft Office for MAC, how does the sender select a notification that an email has been opened and read in Outlook?  Thanks

    Since this question is about a Microsoft product, you might have more luck getting suggestions if you ask in Microsoft's own forums.
    Regards.

  • HT5312 i cant remember security questions and i dont have rescue email how do i set it up

    i cant remember security question and dont have a rescue email set , cant seem to set up rescue email address. how do i  do this.

    The Rescue Email needs to be Set up Before you need it.
    ceslive wrote:
    i cant remember security question
    See Here.  Apple ID: Contacting Apple for help with Apple ID account security
    Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact

  • Audio record and email, how do I?

    Sorry, I'm sure this is easy,, but not easy to find the answer...
    I would like to create/record an audio clip of myself and email it, I know there is a microphone on this laptop, but I don't know how to use it to record and email.
    thanks,
    J

    Well, you could record your voice using the PowerBook's internal microphone and the free application available at versiontracker called Audio Recorder. [Credit to Tuttle for turning me on to this app. a while back when I was in need of such a program.]
    I'm not sure, but I assume that you could then attach the file containing your recorded voice to an e-mail.
    If it doesn't work, post back....

  • I can't remember the password I used to set up icloud nor the email I used to set it up with. I have my apple ID and email for that account.

    I recently had to do a factory restore on my iphone 4s. Upon trying to set up my phone again I am being asked to sign into my icloud account. I can't remember the password or the email I used to set it up. I know my Apple ID, password and email for that account, but that doesn't allow me to get back into my phone. I can't reset the icloud password because I can't remember the email I used. Any ideas on what I can do please ?

    Hi, Fugalltadowivu.  
    Thank you for visiting Apple Support Communities.
    This sounds like Activation Lock has been enabled on this device.  Here is some helpful information regarding this feature.
    Find My iPhone Activation Lock
    http://support.apple.com/en-us/HT201365
    If you purchased your device from a third party, this device may be locked to their Apple ID.  If this is the case you may want to check out the article below.
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/en-us/HT201441
    Cheers,
    Jason H.

  • Send apple email - how do I set the - send FROM account?

    found this nice script to auto create and send apple email...
    Q: how do I set the : send from account?
    tell application "Mail"
    set theMessage to make new outgoing message with properties {visible:true, subject:"My Subject", content:"My Body"}
    tell theMessage
    make new to recipient at end of to recipients with properties {name:"test", address:"[email protected]"}
    end tell
    send theMessage
    end tell
    nice info here:
    http://www.mactech.com/articles/mactech/Vol.21/21.09/ScriptingMail/index.html

    I've been using the following which may be more complicated than necessary but it does work:
    -- SCRIPT SEGMENT --
    tell application "Mail"
    activate
    set listOfSenders to {}
    set everyAccount to every account
    repeat with eachAccount in everyAccount
    set everyEmailAddress to email addresses of eachAccount
    if (everyEmailAddress is not equal to missing value) then
    repeat with eachEmailAddress in everyEmailAddress
    set listOfSenders to listOfSenders & {(full name of eachAccount & " <"Mail"
    set newMessage to make new outgoing message with properties {subject:theSubject, content:theBody & return & return}
    tell newMessage
    set visible to true
    set sender to theSender
    make new to recipient at end of to recipients with properties {name:theName, address:theAddress}
    set font to "Lucinda Sans"
    set size to 14
    end tell
    activate
    --send newMessage
    end tell
    -- END SCRIPT SEGMENT --
    I have commented the actual "send message" line so that I can read the message before clicking the send button as I often will add a comment.
    Al

  • I bought my wife a new 4S for Christmas, how should I set her up?  I already have an apple ID but should I give her a unique ID as well?  And if so how do I connect her to my iTunes account?  Thanks

    I have an apple ID but should I set her up with a unique ID as well?  And if so how do I link her to our iTunes library?  Thanks

    You must first go to your Apple ID and take the device off of your listed devices and then wait until it is updated accordingly ...Next link the iPhone to her Apple ID.  go to the app store and on to 'featured' scroll down to the bottom and it shows your apple id, click it and sign out and you can then sign in with your new apple id
    If you mean your iCloud ID, go to Settings>iCloud, tap Delete Account, then sign back in with the ID you want to use.  If you are signing back into the same account, just with a renamed ID, choose Delete from My iDevice when prompted.  Your data will be synced back when you sign back in.  However, if you are changing to a new account with a new ID and need to migrate your synced data to the new account, choose Keep on My iDevice when prompted.  Then choose Merge to upload your data to the new account when you sign back in and turn on your iCloud data syncing.
    If you want to keep your photo stream photos, save them to your camera roll before deleting the account (tap Edit, tap all the photos, tap Share, tap Sae to Camera Roll).

  • How do I set up iPad with airport express to stream music to stereo without internet connection?

    how do i set up iPad and airport express to stream music to stereo without using internet connection.

    Your 4th gen iPad does have the necessary software to connect to the AirPort Express but not to administer it. To do the later, you would need to install the AirPort Utility applet.
    You said that your iPad can "see" the AirPort's wireless network, but can't connect. What happens exactly when you attempt to do so? Do any of your other wireless devices have any trouble connecting to the Express? Did you configure the Express for a closed network ... that is, not to broadcast its Network Name?

  • How can I set family sharing with my mom living in Europe?

    hi, i just bought new iphone for my mom who is living in Europe and I wanted to set family sharing with her to share pictures but I can't because I live in USA ... is there any way how to set it? Thanx

    Seeing how itunes store is not international, cause every locale has to comply with different set of laws - you probably can't use family sharing feature, but you can use photosharing.
    http://support.apple.com/en-us/HT202786

  • How to correctly set puppet attributes with AppD?

    Hello,
    I'm trying to add a value to a puppet attribute within AppD. The value is an array and should look something like this ['ntp1.testlab.local'] for puppet to work. The problem is after AppD processes it, it ends up looking like this '["ntp1.testlab.local"]' in the node's manifest, which doesn't work. I've tried several variations with no joy. Can anyone please show me how to correctly set puppet variables within AppD?
    From the node manifest created by AppD:
    [root@ar-syslog-tlab-01 appd_nodes]# grep "Puppet_ntp_v3_1_2_servers =" /etc/puppetlabs/puppet/manifests/appd_nodes/CentOS-LON4FRQT.pp
      $Puppet_ntp_v3_1_2_servers = '["ntp1.testab.local"]'
    From stdout and stderr log available on VM at /tmp/25/CG_Puppet_ntp_v3.1.2_AI-REMEDIATE_NODE/task.stdlog.
    - !ruby/object:Puppet::Util::Log
          level: !ruby/sym err
          tags:
            - err
          message: "Could not retrieve catalog from remote server: Error 400 on SERVER: Could not parse for environment production: Syntax error at '['; expected ']' at /etc/puppetlabs/puppet/manifests/appd_nodes/CentOS-IEU4RJWH.pp:17 on node centos-lon4frqt"
          source: Puppet
    If I edit the node's manifest to read
           $Puppet_ntp_v3_1_2_servers = [ 'ntp1.testab.local' ]
    it works fine.
    Any tips would be greatly appreciated.
    Thanks.

    If it is a bug, you maybe have a workaround by adding a script task in the execution plan the Blueprint as the first task to edit /etc/puppetlabs/puppet/manifests/appd_nodes/CentOS-LON4FRQT.pp to modify the value of $Puppet_ntp_v3_1_2_servers, and then the rest tasks will get the correct value format for $Puppet_ntp_v3_1_2_servers.

Maybe you are looking for

  • Not able to see the PSA

    Dear Experts, I have enhanced the extract structure of  2lis_13_vdkon in R/3 with 5 fields which are exist in transfer structure. I have replicated the data source in BI but unfortunately i have not deleted the data in the PSA. After replication when

  • How do i disable automatic start up of programs on OSx?

    Hi - can anyone please tell me how to disable all the files and programs I was working on when I shut down from automatically re-opening when I restart my computer? It's annoying and very time consuming. Thanks!

  • E56 screen broken - need help getting number off p...

    I hope someone can help me. The screen on my E65 has broken and I need to get the number off the phone before sending it to be repaired. Without a screen I am flying blind so have no idea what keys I need to be pressing. I have tried connecting the p

  • Using "/usr/bin/open" Remotely

    Hi, I'm wondering if it's possible to execute /usr/bin/open remotely over an ssh connection without executing it as root with sudo. I've added the necessary configuration in the sudoers file that should have let me execute this, however, it still won

  • Drill using SDK in BO6.5

    HI, i m able to view the report and handle prompts using webIntellingence SDK (using WIBEAN) now i have to drill the report using SDK in Business objects 6.5, The format of the report is .rep( Revenue.rep). can i use this report for drilling using SD