Mail flow to Edge Transport from a different AD site

Trying to define a solution for *outbound* load balancing from Exchange 2013 organisation between Edge Transport servers.
Setup:
1 Edge Transport server in SiteA
1 Edge Transport server ins SiteB
Both subscribed to the AD site in SiteA and are therefore on the same send connector (to allow automatic load balancing and failover)
Situation:
Lets say all MBX/CA servers in SiteA go offline.  Can an MBX/CA server in SiteB send email directly to the Edge Transport that is subscribed to the AD site in SiteA, or does there need to be an MBX/CA server available in SiteA to hop through?
I'm hoping for an answer to be backed up clearly by a TechNet article or authoritative source as I can't really work with guesses.
Thanks.
Let’s say I have an Edge Transport subscribed to ADSiteA.  All MBX/HT servers in ADSiteA go down.  Can a MB/HT server in ADSiteB send an email directly to an Edge Transport subscribed to ADSiteA, or does it need to hop through an MBX/HT in the
subscribed site?
David

Hi David
One or more Edge Transport servers can be subscribed to a single Active Directory site. However, an Edge Transport server can't be subscribed to more than one Active Directory site. If you have more than one Edge Transport server deployed, each server can
be subscribed to a different Active Directory site. Each Edge Transport server requires an individual Edge Subscription.
A subscribed Edge Transport server is associated with a particular Active Directory site. If more than one Hub Transport server exists in the site, any of them can replicate data to the subscribed Edge Transport servers.
I dont think there is a solution to subscribe  edge servers for more than 1 site 
Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com

Similar Messages

  • Mail flow problem after upgrade from cu1 to sp1

    I have update Exchange server 2013 CU1 to SP1 (CAS Role). After upgrade mail cannot flow. all the mail are stuck.
    CAS server use to mail flow outside and receive from outside. but The problem is this CAS server mail flow not work after upgrade exchange server 2013 CU1 to SP1.
    Please give suggest.
    Thanks

    I didn't connect to queue viewer as because the version of exchange 2013 server are different. in the environment two CAS server and two Mailbox server. i just update one CAS server into SP1. and another CAS in CU3. Mailbox 01 is CU3 and Mailbox 02 is CU
    1. So their is version difference in the environment.
    So, when i update CAS server to SP1. That server is not working for mail flow.
    Please suggest.

  • Mail's Account Directory - accessible from a different start-up volume?

    I have two internal hard drives in my PowerMac G4. One volume has Tiger 10.4.11 installed; the other had Leopard 10.5.6. I have not yet fully transitioned from Tiger to Leopard, but I want to do so. However, before I do so I want to know if I will be able to:
    (1) run the applications which reside on the Tiger volume when I boot up in Leopard (so that I do not have to waste hard drive space by installing the same applications on two different internal hard drives; and
    (2) access the email messages that reside on the Tiger volume when I boot up in Leopard (so that I can keep all my mail in one place, and so that I can access my email no matter whether I boot up in Leopard, or in Tiger, when I need to use older applications that may not be Leopard-compatible and which I do not wish to spend more money on upgrades).
    Since this forum addresses Mail and Address Book issues, I would like to get a definitive answer to the second inquiry, namely, if I boot up in Leopard, can I access the mailboxes and email messages that reside on the Tiger volume, or must I absolutely (somehow) bring all those messages into Leopard and be compelled to use only one Mac OS to access the Mail application on its associated start-up drive.
    In trying to figure this out myself, I notice that, in the Mail preferences panel, on the Advanced tab of the Accounts button, there is an option called "Account Directory:" that lists "~/Library/Mail" as the path to the directory where email messages are stored. While there is a "Choose" button next to the file path, both the pathname and the button are shadowed out, and I can see no way to activate that option.
    I am a little bit confused here, because the appearance of that option implies that one might be able to actually direct the Mail application to store email messages on a volume other than the start-up volume. However, the fact that the "Choose" button and the actual path name are shadowed out appears to cancel out that capability.
    Can anyone shed light on this mystery? Is it possible to access email that resides in Library of another volume other than the one used to start-up the Mac, and, if so, how is that accomplished?
    bowlerboy_jmb

    BowlerBoy_JMB wrote:
    I have two internal hard drives in my PowerMac G4. One volume has Tiger 10.4.11 installed; the other had Leopard 10.5.6. I have not yet fully transitioned from Tiger to Leopard, but I want to do so. However, before I do so I want to know if I will be able to:
    (1) run the applications which reside on the Tiger volume when I boot up in Leopard (so that I do not have to waste hard drive space by installing the same applications on two different internal hard drives; and
    it might work with some self-contained apps that are installed by drag and drop into /Applications but should not be done in general. It will definitely not work with any apps that use installers to install.
    (2) access the email messages that reside on the Tiger volume when I boot up in Leopard (so that I can keep all my mail in one place, and so that I can access my email no matter whether I boot up in Leopard, or in Tiger, when I need to use older applications that may not be Leopard-compatible and which I do not wish to spend more money on upgrades).
    Since this forum addresses Mail and Address Book issues, I would like to get a definitive answer to the second inquiry, namely, if I boot up in Leopard, can I access the mailboxes and email messages that reside on the Tiger volume, or must I absolutely (somehow) bring all those messages into Leopard and be compelled to use only one Mac OS to access the Mail application on its associated start-up drive.
    yes, you must transfer all your Mail to the leopard partition and use it from there. yes, you are compelled to do so and no there is absolutely no way around it.

  • How do I link to a specific frame in the timeline of an Edge document from a different page?

    lI have the intro of my new website made in Adobe Edge Animate, however I don't want people to watch the intro every time they click "back". So is there a way of linking directly to a label from another page? Should I use something like:
    "<a href="page_URL.com/edge_file.html" target="label_in_the_timeline">"

    Hey Squeege,
    I highly recommend you becoming familiar with basic javascript syntax (setting variables, functions, scope, if/else statements). Knowing at least the basics really makes Edge Animate come alive, and gives you a lot more power inside the application.
    Taking the code from the other thread, you would do something like this, on Stage.compositionReady event:
    // function to grab specified param
    sym.getParam = function(name) {
        name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
        var regexS = "[\\?&]" + name + "=([^&#]*)";
        var regex = new RegExp(regexS);
        var results = regex.exec(window.location.href);
        if (results == null)
            return "";
        else
            return results[1];
    // get query param called 'param', (should be "true", "false", or leave it out)
    var playIntro = sym.getParam('param');
    if( playIntro == "true" ) {
         // tell sym to play intro label
         sym.play( "intro" );
    }else if( playIntro == "" ) {
         // tell sym to play intro label
         sym.play( "intro" );
    }else if( playIntro == "false" ) {
         // tell sym to play skipIntro label
         sym.play( "skipIntro" );

  • How can I make AOL Desktop software my default e-mail when trying to connect from a a web site on Firefox?

    When I click on a link on a website meant for e-mailing--using Windows 7 I no longer have the option of sending it through my AOL Desktop software as I used to in Windows XP. Is there an option in Firefox that will allow me to use the AOL Desktop software as my default e-mail program?

    This didn't work. There is no option provided in Firefox for AOL--no add on either. And windows 7 does not let you use a browser based e-mail--even you change the registry--it will bring you to the AOL browser but won't open a "write" e-mail box and enter the name of the recipient automatically as it did in Windows XP by changing the option in internet options...someone must have a way of doing this...

  • Mail flow is not working Exchange 2010 to 2013 in coexistence mode

    Hi ,
    We are migrating Exchange 2010 sp3 to Exchange 2013.
    mail flow is not working from 2010 to 2013, mails are qued up in smtp relay queueu.
    already added 2010 ip  address  to 2013 receive connector and give anonymous permission.
    but still mails are smtp relay queue.

    Hi Sujith,
    As requested by
    Nithyanandham please post the error from Queue Viewer.
    Few things to check. 
    Please remove IP address from "Default Receive connector" first.
    Ensure both servers can ping by FQDN and it returns correct IP.  i.e.  ping exch2013.contoso.com
    Make sure both exchange server can communicate each other. if possible try to telnet port 25 by FQDN of the Exchange2013 server and try to send an email from exchange2010 using the URL below. if there is any error please post error.
    http://exchange.mvps.org/smtp_frames.htm
    Make sure "Exchange server Authentication" is ticked in your default receive connector properties. If not ticked tick it and restart Transport service and check mail flow again.
    Thanks, MAS
    Please mark as helpful if you find my comment helpful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

  • I have 3 email accounts in Mail on Macbook Pro.  Mail is only being sent from 1 account.

    I have 3 email accounts in Mail.  Mail is only being sent from 1 account, even though I select one of the other accounts in the "from" field.  In my sent box, the "From" field says the accout I selected, but all recipients say they receive it from a different account.  I set my composing preferences "send new messages from" to the main account, but all my mail is still being sent from a different account.  I cannot see that this is happening, only people receiving it can.  I noticed it because when they reply, it goes to a different account than what I sent to them.  Any suggestions with what I should do?

    Thank you!  Funny.  I had just found that answer eleswhere:  http://simonwheatley.co.uk/2013/02/apple-mail-sending-email-from-the-wrong-accou nt/

  • TMG 2010 Without Edge Transport

    Is it possible to configure TMG 2010 to open port 25 and route Exchange 2010 mail without an Edge Transport server?

    Could it be that you are using the wizard found under the node "E-Mail Policy" in the mmc?
    If so, don't use that, use "Publish Mail Servers" under "Firewall Policy" and when asked if you want to continue the wizard (step after selecting SMTP as the protocol to be published, answer yes.
    After completing the wizard you should have a regular server publishing rule for SMTP.
    You could also use the wizard "Publish Non-Web Servers" and select SMTP Server as protocol. This will fill your request "open port 25 on TMG".
    Either way you do it, Edge Transport is not required.
    Hth, Anders Janson Enfo Zipper

  • Establish mail flow from Exchange 2007 to Exchange 2013

    I am currently using Exchange 2007 into three sites in three cities and two of the sites are connected to Internet sending and receiving emails via Edge transport servers.
    Now I am planning to upgrade to exchange 2013 CU1. I don't find any documentation on how to establish mail flow between Exchange 2007 and Exchange 2013. Will it be automatic or do i need to create specific connectors between them?

    Was this question answered.  We're in the same situation now as we're upgrading to Exchange 2013 from 2007. The latest CU certainly helped.   Initially the test mailboxes on Exchange 2013 couldn't email each other - This was resolved with CU7 and
    using "Custom Settings" - manually entered IPs for DNS in the Exchange  Admin Center "DNS Lookups".
    Issue at the moment Test mailboxes on Exchange 2013 cannot email mailboxes on 2007 or visa-versa and mail from external sources queues on the 2007 box.  
    Any assistance will be greatly appreciated.  

  • Exchange 2013 upgrade from 2010 and no mail flow and cannot move mailboxes

    I am in the process of moving to Ex 2013 from 2010. I have installed Ex 2013 SP1 on a new server 2012 R2. All of my Ex 2010 servers are SP3 RU 5. Ex 2013 is running and I can connect through the EAC and see all other Exchange servers and connectors that
    were already in existence. Several puzzling things are happening now that the servers are in coexistence:
    1) As soon as Ex 2013 was installed on the network, many Outlook users are continuously being prompted to enter their domain credentials.  They can cancel the prompt and Outlook still sends/receives email.  No user mailboxes are on Ex 2013 yet. 
    Why is this happening?
    2) I am following the Ex 2013 Deployment Assistant and I get to the step to move the Ex 2010 Arbitration mailbox to Ex 2013 and the move does not happen--it just says "syncing" and never completes.  I tried moving a test mailbox from Ex 2010
    to the 2013 database and I get the same result.  I created the move request on the Ex2013 server and I see it as queued on the Ex2010 server, so I know they are "talking" to each other.  However, when reviewing the status of the move I
    see "MapiExceptionNoAccess: Unable to open message store".
    3) There seems to be no mail flow on the same Ex2013 server or between the Ex 2010 and 2013 servers.  I created two new test user mailboxes in Ex 2013.  The Ex2013 mailboxes cannot send/receive to each other or to Ex 2010 users.  This
    seems strange, unless I am completely missing something in the Ex 2013 install?
    I know this is a lot in one post, but following the Deployment assistant, I was hoping this would be something that others have faced.  Thanks for any input here.

    Does the below points already fit for you.
    Exchange 2013 Supported with the following minimum versions of Exchange:
    1) Exchange*** 2010 SP3 on all Exchange 2010 servers in the organization, including Edge Transport servers.
    2) Exchange 2013 CU2 or later on all Exchange 2013 servers in the organization.
    *** If you want to create an EdgeSync Subscription between an Exchange 2010 Hub Transport server and an Exchange 2013 SP1 Edge Transport
    server, you need to install Exchange 2010 SP3 Update Rollup 5 or later on the Exchange 2010 Hub Transport server.
    Thanks Prem P Rana MCSA Messaging 2003 MCSE 2003 Server MCTS MCITP Exchange 2007, 2010 Gurgaon, India http://blogs.msexchange-experts.com

  • Exchange 2013 SMTP Mail Flow from external domains

    I have query related to mail flow for incoming mails from external domains from Internet facing site. There are two sites - Site A & Site B. Both have Exchange 2013 CAS servers in NLB and Exchange 2013 Mailbox in individual DAG - say DAG1 in Site
    A and DAG2 in Site B. Site A is Internet facing site and site B is not Internet facing.
    An incoming Internet mail meant for recipient in Site B will land in Exchange 2013 CAS server in Site A. This CAS Server in Site A will look for the recipient in local Domain Controller and get to know the mailbox database of this recipient is in DAG2 (
    in site B ) Will the FET service in EX2013 CAS in Site A make a SMTP connection with FET service of EX2013 CAS in site B which will then make SMTP connection to EX2013 Mailbox server in Site B which is holding the recipient mailbox Active copy for delivery.
    OR
    EX2013 CAS will send this mail to Ex2013 Mailbox server in site A and the Hub Transport service running in in site A will then make SMTP connection with EX2013 Mailbox server in Site B which is holding the recipient mailbox Active copy
    Need clarification on above
    Thanks
    Parveen

    Hello,
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

  • Exchange 2013 CAS-MBX / Exchange 2007 Edge Mail flow

    I am in the process of migrating from Exchange 2007 to Exchange 2013.  I have installed my 2013 Cas/MBX into my environment with the existing 2007 Hub/MBX and existing 2007 Edge.  Mail flow on the 2007 side is unchanged (working) but on the 2013
    side I am able to receive mail but I can't send (from test mailbox).  It just sits in the que on the 2013 CAS/MBX until it expires.
    Any ideas?  My Exchange 2007 servers are both upgraded to SP3 Rollup 13 so the versions should be fine.

    I redid my edge subscription (applying the xml on the 2013 hub).  All works the same (mail flow on the 2007 side works fine but unable to send out for mailbox's that live on the 2013 side).  One thing I noticed is that when I ran start-edgesynchronization
    I get the following:
    RunspaceId     : xxxxxx
    Result         : CouldNotConnect
    Type           : Recipients
    Name           : XXXX
    FailureDetails : The LDAP server is unavailable.
    StartUTC       : 9/15/2014 2:03:23 AM
    EndUTC         : 9/15/2014 2:03:23 AM
    Added          : 0
    Deleted        : 0
    Updated        : 0
    Scanned        : 0
    TargetScanned  : 0
    RunspaceId     : xxxxxx
    Result         : CouldNotConnect
    Type           : Configuration
    Name           : XXXX
    FailureDetails : The LDAP server is unavailable.
    StartUTC       : 9/15/2014 2:03:23 AM
    EndUTC         : 9/15/2014 2:03:23 AM
    Added          : 0
    Deleted        : 0
    Updated        : 0
    Scanned        : 0
    TargetScanned  : 0
    I am able to ping my domain controllers / edge server and I can also telnet to ports 389 & 3268.  I have restarted my Active directory topology service

  • I have 4 email accounts in apple Mail.  My mail is sending from the wrong account.  even on "reply" it sends from a different account.  I have 3 gmail accounts and one exchange server account. I choose which account to send from and it still sends from a

    I have 4 email accounts in apple Mail.  My mail is sending from the wrong account.  even on "reply" it sends from a different account.  I have 3 gmail accounts and one exchange server account. I choose which account to send from and it still sends from the same gmail account.  Help.

    I HAD two accounts because of this problem.  I completely removed the problem account from the Apple Mail client.  Guess what is happening??  That's right - Mail is still sending from the other account that no longer exists on my computer, and I have absolutely no idea how this is happening.  This is incredibly frustrating.  When a recipient chooses to reply to my message, quite often I won't get it now because it is going to the other account that has now been deleted from my system.  COME ON APPLE!!! WHAT'S THE DEAL WITH THIS???

  • Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?

    Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?
    Thanks!

    Dear Linc,
    Thank you for the advice, John Blanchard1  and Linc Davis
    As suggested in your reference thread I removed "/Library/Printers/hp/PDEs/hpPostScriptPDE.plugin" and the problem has been resolved.
    I am guessing the the plug-in for the hp printers got corrupted and effected every thing, or became unsuitable when I installed an Apple update. I would be most grateful if you can confirm how the problem was coursed so I can understand and learn from this experiance.
    Ash

  • Mail: email retrieval from 2 different servers

    I retrieve emails to MAIL for my 2 email addresses from 2 different servers (gmail and 'workspace'). I try to keep the email on the servers to a minimum by deleting emails, but I want all the emails to stay in "Mail" on my Macbook pro.  When I delete email on the gmail server and then 'check mail' in Mail, if it's not on the gmail server, it gets deleted in Mail.  Under 'preferences:accounts:advanced' I've selected 'all messages and their attachments' under 'keep messages for offline viewing'.  I thought this would preserve all emails in Mail, but it doesn't.  What should I do to make sure all the emails I want to stay in Mail, stay there regardless of whether they are still on the servers or not?  Thanks.

    try, like this
    SQL> select name from v$database;
    NAME
    DBDEMO
    SQL> create user testing identified by passwd;
    User created.
    SQL> grant connect,resource to testing;
    Grant succeeded.
    SQL> conn testing/passwd;
    Connected.
    SQL> create table test_tb (id number);
    Table created.
    SQL> insert into test_tb values(123);
    1 row created.
    SQL> /
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select count(*) from test_tb;
      COUNT(*)
             2
    SQL>
    on dblink created machine:-
    SQL> select name from v$database;
    NAME
    DB2
    SQL> create user nic identified by nic;
    User created.
    SQL> grant connect,resource, create database link to nic;
    Grant succeeded.
    SQL> conn nic/nic;
    Connected.
    SQL> create database link test_db_link connect to testing identified by passwd using '(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = dbdemo)))
      2  ';
    Database link created.
    SQL> select count(*) from test_tb@test_db_link;
      COUNT(*)
             2
    SQL>

Maybe you are looking for

  • Outlook 2013 will not save Compact Navigation Option setting

    We have started upgrading some of the machines in our office from Office 2010 to 2013, (win7 and win 8 machines). I have found that Outlook will not save the selection of "compact navigation" in the "Folder Pane/Options" settings. I have tried a comp

  • Problem pairing bluetooth keyboard?

    I feel ridiculous posting this because it's essentially publicizing my own stupdity, but I noticed a lot of other people having the same problem I had. I had been using my aluminum bluetooth keyboard, it was working great. Then it stopped working-- I

  • Connection Logic in SQL Developer?

    Can anyone explain the design of the connection handling in SQLDeveloper? You seem to get 2 sessions when you connect to the database ( maybe one for the browser and one for the worksheet ), and then one for every worksheet you launch afterwards, but

  • Inventorising Additional Costs in Import Pricing

    Dear Friends, Can any body help me how to inventorise additional costs ( Freight, Insurance, Commission agent Charges etc.) in Import Purchase Pricing. Kindly help me on this regard. Regards, Ashok

  • Migration over private network - Non-Cluster

    Hello everyone... I have a hyper-v cluster (3 nodes), and a second stand-alone hyper-v host; all of which is managed by SCVMM 2012 R2.  The VMM server, and all hyper-v hosts are connected to a 10gbs private network. When doing a live migration betwee