Adding SMTP on Unity7.0 Exchange version

I Have to add SMTP entry for subscribers in Unity 7.0 which is not allowing me my existing version.  Please suggest.

Hi,
One of my friend is also faced problem with Exchange 9.0.4 connector.
i think he got solution from oracle ,i dont know more details.
--regards
user539807

Similar Messages

  • Would Like to Get Report of Daily Emails In and Out from Members to a DL Exchange version : 2007 I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity is it possible ?

    Would Like to Get Report of Daily Emails In and Out from Members to a DL
    Exchange version : 2007
    I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity
    is it possible ?

    Well, distribution groups don't really have a concept of "in" or "out". They only serve to distribute messages sent to them -- unless you're asking to know who was a member of the distribution group at the time a message was sent to the DL.
    Message tracking logs hold the information you want, though. You'd have to look for EXPAND events that reference the distribution group and take the sender's e-mail address from that event. If the DL is a simple one that's not a member of any other groups
    you could also look for RECEIVE events sent to the e-mail address of the group and get the sender's name from that event.
    You can use Powershell extract the rows of data from the logs, but you'll have to write the code to get the data out of those rows and into a format you want. Perhaps LogParser could be useful in place of Powershell?
    --- Rich Matheisen MCSE&I, Exchange MVP

  • When opening my Outlook 2010 with new added e-mail account with Exchange Server, I have to click manually on my standard e-mail account for checking mail

    When opening my Outlook 2010 with new added e-mail account with Exchange Server supplied by my employer, I have to click manually on my standard e-mail account for checking mail. Do I have to upgrade my Microsoft Office 2010 or how can I make my Outlook
    2010 check all my four e-mail accounts without manually click on my accounts?
    Sincerely
    Ketil Hothorp

    Hello Ketil,
    Good Day...
    Seems to be the Issue is Syncing emails, now I would recommend you to Remove and Add the Account and try and check if the emails are getting synced automatically.
    Hope this is with Single User. If it is with Multiple Users then we need to check the permissions assigned.
    Regards,
    Praveen

  • Adding Custom SMTP address in Bulk Exchange 2010

    Hi,
    I'm trying to create a script that gets all user mailboxes in Exchange 2010, then adds an additional custom SMTP address (SIP) without removing any existing email address.  If I run the script for one user, it works fine (below)
    This works for an individual user:
    $SIPUsers = Get-Mailbox -Identity user
    ForEach ($user in $SIPUsers)
        $SIPUsers.EmailAddresses += "SIP:" + $user.SamAccountName + "@domain.org"
        Set-Mailbox -Identity $user -EmailAddresses $SIPUsers.EmailAddresses
    When I run this script (below), it removes all SMTP address, x500, custom secondary alias etc and applies the default email policy.  I do get an error as well, which is:
    $SIPUsers = Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize unlimited
    ForEach ($user in $SIPUsers)
        $SIPUsers.EmailAddresses += 'SIP:' + $user.SamAccountName +
    '@ynhh.sso.ynhh.org'
        Set-Mailbox -Identity $user -EmailAddresses $SIPUsers.EmailAddresses
    Error:
    Property 'EmailAddresses' cannot be found on this object; make sure it exists and is settable.
    At C:\Scripts\SIPAdd.ps1:5 char:15
    +     $SIPUsers. <<<< EmailAddresses += "SIP:" + $user.SamAccountName + "@ynhh.sso.ynhh.org"
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : PropertyAssignmentException

    Actually.. just noticed in your script:
    Once you go for the bulk change, you are still trying to call EmailAddresses from $SIPUsers (An array at this point) instead of $User.EmailAddresses.  
    $SIPUsers = Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize unlimited
    ForEach ($user in $SIPUsers)
    $user.EmailAddresses += 'SIP:' + $user.SamAccountName + '@ynhh.sso.ynhh.org'
    Set-Mailbox -Identity $user -EmailAddresses $user.EmailAddresses

  • SyncFolderHierarchy differs between Exchange versions

    Hello, 
    I've been testing EWS's `syncFolderHierarchy`method to sync changes from exchange. My development testing has all been done with one Exchange 2013 version. I've noticed this behavior: 
    Calling syncFolderHierarchy for folder X changes the sync state when there has been a change to the folder structure under X. 
    Calling syncFolderHierarchy for folder X changes the sync state when a message has been added/removed from a subfolder* under X.
    However after doing more testing with Exchange 2010, I found a troubling issue where folder structure changes change the sync state, but not changes to the folder itself. 
    So for 2010(the one I have setup): Calling syncFolderHierarchy for folder X *does not* change the sync state when a message has been added/removed from a subfolder* under X.
    This is a big issue because while testing with 2013 I was under the impression that syncFolderHierarchy would change the sync state if messages would be moved around. If that happened, I then called syncFolderItems on each folder to find where the change
    came from. If I cannot know if there have been any item changes just by calling syncFolderHierarchy, then I would have to go through each folder each time just to check if there have been any changes. That sounds horrible and will cripple my application. 
    So finally my question! Yay
    Is there a configuration/setup issue with 2010 that's not behaving like 2013 in this case? Is there a default behavior that needs to be changed? 
    Finally, if there is absolutely nothing I can do to make the 2010 version behave nicely like 2013, what's the best approach to sync without going through all the folders?
    *By subfolder, I don't mean added/removed from X directly, but from a subfolder of X, say X/Y/Z. Moved message from Z to Y.  
    Stanly

    Hello, 
    I've been testing EWS's `syncFolderHierarchy`method to sync changes from exchange. My development testing has all been done with one Exchange 2013 version. I've noticed this behavior: 
    Calling syncFolderHierarchy for folder X changes the sync state when there has been a change to the folder structure under X. 
    Calling syncFolderHierarchy for folder X changes the sync state when a message has been added/removed from a subfolder* under X.
    However after doing more testing with Exchange 2010, I found a troubling issue where folder structure changes change the sync state, but not changes to the folder itself. 
    So for 2010(the one I have setup): Calling syncFolderHierarchy for folder X *does not* change the sync state when a message has been added/removed from a subfolder* under X.
    This is a big issue because while testing with 2013 I was under the impression that syncFolderHierarchy would change the sync state if messages would be moved around. If that happened, I then called syncFolderItems on each folder to find where the change
    came from. If I cannot know if there have been any item changes just by calling syncFolderHierarchy, then I would have to go through each folder each time just to check if there have been any changes. That sounds horrible and will cripple my application. 
    So finally my question! Yay
    Is there a configuration/setup issue with 2010 that's not behaving like 2013 in this case? Is there a default behavior that needs to be changed? 
    Finally, if there is absolutely nothing I can do to make the 2010 version behave nicely like 2013, what's the best approach to sync without going through all the folders?
    *By subfolder, I don't mean added/removed from X directly, but from a subfolder of X, say X/Y/Z. Moved message from Z to Y.  
    Stanly

  • Can't send using SMTP with SSL on Exchange 2003

    We have an exchange 2003 server. The iPhone is configured for IMAP w/SSL for incoming and works fine. When we have SSL turned on on the outgoing SMTP, we get the message "Cannot send mail. Check the account settings for the outgoing server mail.domain.com". With SSL turned off, it works fine.
    I set up outlook on a PC to use IMAP/SMTP w/ SSL and it works fine. I can send and recieve with no errors.
    We're sure the user name and password entered for the outgoing are correct.
    What else could be causing the iPhone not to send, but where Outlook works fine?

    The new phone at the Verizon store had the exact same symptoms.  Ergo...the problem was in my server.
    So...if anyone else has this problem (can't send file attachments)...go to Exchange Server (I'm running 2007..settings on other version are slightly different), server settings, find the send hub. Click on it then look for the Exchange Active Sync tab and click it. Check the Ignore Client Certificates. This may only apply to those who run self generated SSL certs on thier Exchange Server...cheap **bleep**. LOL
    I swear...last week, before buying this Thunderbolt my OG Droid sent file attachments just fine.  Somehow I inadvertantly set the Active Sync to accept client certificates.  To err is human...to blame it on Verizon is more so.  LOL
    Nate

  • 11004 error SBS Exchange 2003 SP2 with POP connector. Exchange version 6.5 7638.1

    Hello
    I am getting loads of errors displayed in Event Viewer Application log like:-
    Event ID 1035
     A error occurred in connecting to the <xxx.xxxxxx.co.uk> POP3 server for user <[email protected]>. The error is 11004. The server may be down for maintenance
    or your server is not connected to the Internet.
    Event ID 1023
    The downloading process for mailbox <[email protected] [mail.XXXXXXXXXXXXX.co.uk]> was ended with one or more errors.
    The Server has 3GB memory and 64GB free disk space on the parttiion supporting Exchange
    Can anyone suggest a troubleshooting scheme?

    Is this machine running SBS? Is this an error that's logged by the kludgy POP3 connector? If so, that connector isn't part of Exchange -- it's something the SBS folks added. You'll have to ask our question in a SBS forum.
    Keep in mind that a POP3 server will lock the mailbox if the messages are being checked by another client (unlike Exchange which allows multiple POP3 sessions). That would cause those 1035 errors to be logged by Exchange.
    When you combine the 1035 with the 1023 events it looks more like connectivity problems than an Exchange problem. You might want to use a network monitor and see if the connection's being dropped.
    In any case, good luck with Exchange 2003. It's no longer supported -- but I don't think your problem is related to Exchange but to the SBS add-on software.
    --- Rich Matheisen MCSE&I, Exchange MVP

  • Ask the Expert: FlexVPN and Internet Key Exchange Version 2 (IKEv2)

    With Jay Young-Taylor
    Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions about  FlexVPN and IKEv2 with Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to learn and ask questions about  FlexVPN and IKEv2 with Jay Young-Taylor.  Feel free to ask questions on comparison between IKEv1 and IKEv2, What functions does IOS and ASA support, how does DMVPN and FlexVPN interoperate, or any related questions. .  Feel free to ask questions on comparison between IKEv1 and IKEv2, What functions does IOS and ASA support, how does DMVPN and FlexVPN interoperate, or any related questions.
    Remember to use the rating system to let Jay know if you have received an adequate response. 
    Jay might not be able to answer each question due to the volume expected during this event. Remember that you can continue the conversation on the Security sub-community discussion forum shortly after the event.  This event lasts through January 25, 2013. Visit this forum often to view responses to your questions and the questions of other community members.

    Maykol,
    Sorry for the delay in getting back to you here.  Currently we are building some documents that clearly describe line by line (well, paragraph by paragraph) what is occurring in the finite state machine and what information is exchanged in the protocol.  The articles have been writtne and are going through internal review before posting to cisco.com.  We should have them out shortly.
    You can enable "debug crypto ikev2", "debug crypto ikev2 packet", and/or "debug crypto ikev2 error" and follow the packet flow.  The debugs themselves have been re-written a couple of times to make the action/work flow more human readable and in plain english.  It should be easier to understand with the later 15.1 - 15.2 code versions.
    The debugs are broken up based on us sending a packet (look for "Tx Packet") and recieving a packet (loof for "Rx Packet").  In addition you can keep track of a single session by looking at the initator and responder (IKEv2) spi.  Those values will never change during the session life time.
    -Jay

  • Ramifications of assigning a wildcard certificate to the SMTP service (needed for Exchange 2010 Hybrid Configuration - Office 365)

    Hello All:
    I am receiving an error when I run the Manage Hybrid Configuration wizard - ERROR:Updating hybrid configuration failed with error 'Subtask NeedsConfiguration execution failed: Configure Recipient Settings. I have opened a SR, but figured I'd try the forums,
    too. I have a wildcard certificate from GoDaddy (MS says they support wildcards from GoDaddy) & that cert has only the IIS service applied to it on the CAS. I've read in the Exchange Server Deployment Assistant that it should have the SMTP & IIS services
    assigned to it, but my question is - SMTP on the CAS (separate server) or on the Mailbox/Hub Transport (separate server)? And what are the ramifications of assigning the SMTP service to, let's say, the CAS? We have had multiple issues every time the servers
    get updated/changed; I do not want to disrupt services further, as the Manage Hybrid Configuration will be done during business hours.
    If anyone can provide any assistance/clarification, it would be most appreciated.
    Thank you.

    Hi,
    We can enable a Wildcard certificate with SMTP service for Exchange Hybird Deployment. The SMTP service can be assigned to multiple certificates. For some Exchange services such as OWA, Ecp, ActiveSync, Autodiscover service, OOF, it is used with Exchange
    certificate with IIS service. And there is usually only one certificate can be assigned with IIS service.
    Please just make sure your Wildcard certificate can contain all namespaces which are used for all internal URL and External URL configuration in Exchange services. About how to import an existing wildcard certificate on the Exchange 2010 Hybird servers,
    please refer to the Import & Enable Third Party Certificate on Hybrid Servers
    part in the following article:
    http://www.msexchange.org/articles-tutorials/office-365/exchange-online/configuring-exchange-hybrid-deployment-migrating-to-office-365-exchange-online-part9.html
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please
    make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Regards,
    Winnie Liang
    TechNet Community Support

  • Problem by adding one spatial column to the version-enabled table

    Hello, I'm trying to modify one version-enabled table T1 like this:
    --table definition
    create table T1
    (ID NUMBER NOT NULL PRIMARY KEY,
    NAME VARCHAR2 (256),
    FUNCTION VARCHAR2 (256));
    --enable versioning
    EXECUTE DBMS_WM.EnableVersioning('T1','VIEW_WO_OVERWRITE');
    I'd like to add one spatial column to this table by:
    -- modify metada view for spatial indexing
    INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
    VALUES ('T1_LT', 'ANCHOR',
    MDSYS.SDO_DIM_ARRAY
    (MDSYS.SDO_DIM_ELEMENT('X', 0.000, 100000.000, 0.0005),
    MDSYS.SDO_DIM_ELEMENT('Y', 0.000, 100000.000, 0.0005),
    MDSYS.SDO_DIM_ELEMENT('Z', -100, 1000, 0.0005)) , 81989002);
    -- table modification - add a column and create a spatial index
    EXECUTE DBMS_WM.BeginDDL('T1');
    ALTER TABLE T1_LTS ADD ("ANCHOR" MDSYS.SDO_GEOMETRY);
    CREATE INDEX T1_SPX on T1_LTS(ANCHOR) INDEXTYPE is MDSYS.SPATIAL_INDEX;
    EXECUTE DBMS_WM.CommitDDL('T1');
    By finishing of the DDL operation with EXECUTE DBMS_WM.CommitDDL('T1') I get an error message:
    "SQL> EXECUTE DBMS_WM.CommitDDL('T1');
    BEGIN DBMS_WM.CommitDDL('T1'); END;
    ERROR at line 1:
    ORA-20171: WM error: 'CREATE TABLE' and 'CREATE SEQUENCE' privileges needed.
    ORA-06512: at "SYS.WM_ERROR", line 342
    ORA-06512: at "SYS.WM_ERROR", line 359
    ORA-06512: at "SYS.LTUTIL", line 8016
    ORA-06512: at "SYS.LT", line 11925
    ORA-06512: at line 1
    What is wrong here? The Oracle 10g DB is installed on Windows 2003 Server, OWM_VERSION - 10.2.0.1.0.
    Regards,
    Viktor

    Hi,
    You need to explicitly grant the create table and create sequence privileges to the user owning the table. It is not enough for these to be granted by using a role. This restriction is documented in the user guide.
    Also, you should add the entry in the user_sdo_geom_metadata view on the t1_lts table, which is the table to which you are actually adding the geometry column, after calling beginDDL. CommitDDL will make the necessary changes, which in this case would be to add an entry for both t1 and t1_lt.
    Regards,
    Ben

  • Mail falling apart after adding SMTP server

    I recently added a second SMTP server to Mail, which started a string of frustrating bugs, which I haven't ever come across before...
    I have 4 different email accounts setup in Mail, and once I added the second SMTP server, one started giving me an "Invalid Directory" error when trying to save the preferences. After searching these forums, it seemed the best way to deal with it was to archive my messages and delete/resetup the account. I did this without too much hassle, but now I'm getting more frustrating bugs...
    Messages randomly will lose their content: the subject appears in the list of messages, but the body of the message (which was previously there) has completely disappeared.
    Messages won't delete. They become greyed out and the Delete button changes to Undelete when I try to send them to the trash. I searched this problem as well, which led me to Rebuild the offending accounts, but whilst this gets rid of the deleted emails, I suddenly get the content of my inbox copied from another account: the emails in one inbox are also in the rebuilt account and any emails in the rebuilt account disappear.
    I also get the same problem when trying to Move emails to Mailboxes: greyed out, but not moved.
    These bugs are happening in all my accounts, including RSS feeds.
    I hope this makes sense (it all seems a bit convoluted), it's pretty much become a deal breaker for me - I'm tempted to shift away from Mail altogether.
    Message was edited by: kodamapixel
    Message was edited by: kodamapixel

    For others having similar problems: it seems to have helped to remove and recreate all accounts, not just the offending ones. I've had to Rebuild a couple of times since, but Mail seems to have settled down a lot since recreating my accounts.

  • How do we deduce (if we can) SMTP address for an exchange account with only x500 address available? In what cases SMTP address is not available for exchange accounts (please see details below)?

    I am using PR_SENDER_EMAIL_ADDRESS to retrieve sender's email address for exchange mails, but for some mails I only get the exchange X500 addresses. In such case, I can use PR_SENDER_ADDRTYPE
    to check the type but when I detect an X500 address instead of an SMTP one, is there a way I can enhance SMTP lookup? What might be the reasons that SMTP address is available for some External senders and not for others, as in my case? I am using MAPI CDO
    1.2.1 with Exchange Server 2010.
    MSDN Question

    If you getting an X500 Address that generally means there is Directory object (in Active Directory) for that sender, if its an external sender then it most probably there is an AD Contact from that Sender. The best thing to do is just use resolve method
    in CDO to resolve the X500 Address to the Directory object and you should then be able to get the associated SMTP Address from the recipient object. (you also just use LDAP to lookup Active Directory directly).
    Cheers
    Glen

  • SAP SMTP Configuration for Microsoft Exchange Online (Microsoft Hosted Solution for Exchange - Office365)

    Dear All,
    We are using Microsoft Exchange Online (Microsoft Hosted Solution for Exchange – Office 365) for sending and receiving emails. Now we want to setup SAP SMTP so that emails / notifications can be sending through SAP via Microsoft Exchange Online. It is quite easy to configure for setting SMTP Services for locally hosted Exchange Server. But this is the first time I am trying to setup for Microsoft Exchange Online.
    Current Instance Profile settings are as follows;
    is/SMTP/virt_host_1                         *:25000
    is/SMTP/virt_host_0                         *:*
    icm/server_port_2 PROT=HTTPS,PORT=44300,PROCTIMEOUT=300,TIMEOUT=600
    icm/server_port_1                           PROT=SMTP, PORT=1080, TIMEOUT=180
    icm/server_port_0 PROT=HTTP,PORT=8000,PROCTIMEOUT=300,TIMEOUT=600
    ms/server_port_0                            PROT=HTTP,PORT=81$$
    SCOT Settings are
    Mail Host             smtp.office365.com
    Mail Port              587
    Following are the settings for configuring Outlook for Exchange Online – Office 365;
    Server name
    Port
    Encryption method
    POP3
    outlook.office365.com
    995
    SSL
    IMAP4
    outlook.office365.com
    993
    SSL
    SMTP
    smtp.office365.com
    587
    TLS
    Please assist if any one configure office365 with SAP.

    Hello Majid,
    Were you able to setup SCOT for Office365 online, I have to setup same.
    Can you help with some guidelines on how you setup.?
    Regards,
    Ashish

  • Exchange Versions

    Last year I bought CS6 for my PC. This year I own a mac. Is there a way to exchange my windows version for a mac version?

    Maybe. Contact Customer Support and ask about a "cross-grade."

  • Adobe Exchange version 5.5

    I am trying to download the Extension Manager for version 5.5.  When I access the Adobe Exchange page I am brought to version 6.   How can I access the Exchange page for 5.5?

    Sorry for that. We listed the old version in that page because the latest 5.5.3 patch can be installed ONLY AFTER you have installed the old version. Actually you can find the product updates at http://www.adobe.com/downloads/updates/. Also you can launch Adobe Application Manager or Creative Cloud app to learn which products are updatable and update them if necessary.

Maybe you are looking for

  • White Screen at shutdown

    Occasionally when i shut down my mac it takes a while and the screen remains white for about 30 seconds or so.....is this a major issue? how can i prevent this from happening in the future? solutions? advice?

  • [SOLVED] Broken Gnome

    Hello, Everything was going well and I installed a few packages etc. After rebooting when I run gnome-session I get the following errors: Gtk-WARNING **: locale not supported by C library using the fallback 'C' locale Gtk-WARNING **: cannot open disp

  • Installing from imac boot cds

    i have a powermac g3 B+W and a friend is going to lend me his imac dvds to install it. will this work alright or should i just go buy it for myself? powermac is g3 350mhz 768mb ram 40.0gb and 12.7gb hdd Powerbook G3 Wallstreet + Powermac G3 B+W   Mac

  • LPAR - LOGICAL PARTITION QUESTION -

    Hello SDN Experts. LPAR (LOGICAL PARTITION QUESTION) Our current Production Environment is running in Distributed Installation on IBM System P5 570 Servers AIX ver 5.2, each node is running two Applications: SAP ERP 2005  SR1 (ABAP + JAVA)  and CSS.

  • Anything new on a Motion to SWF plugin?

    I have great use for Quicktime in my life as a web designer and use it often. But truth be told, Flash is the defacto standard for motion graphics on the web and that's not going to change anytime soon. Motion 3 is such a nice program and I enjoy usi