How can i route smtp client in multiple messaging store servers environment

In multiple messaging store servers environment, how can i route smtp client to the host which was specified in user's ldap "mailhost" attribute,just likes route pop client through mmp.
does mmp can do it? or any other idea?
thx a lot~!

So, you want to add a text line to some messages, but not all?
That's going to be pretty complex, actually.
First, if all your mail is text, adding a text footer isn't all that difficult, it's done through the conversion channel.
But filtering that, so you only do it for some users, isn't going to be easy at all.
If you can get your users to point their clients to a particular MTA, then you can add the tag on that mta, only.
Please note, that a text tag on a text mail is possible. Adding to an HTML mail is FAR more complex, and not a job for somebody not extremely familiar with MIME and building such.

Similar Messages

  • How can I add a client wireless usig Airport Utility 6.0?

    In menu airport of firmware 6.0 there is not window "Add a wireless client". I'm using Mac Os lion with Airport Utility6.0, how can I add a client wireless with this firmware)?

    If you have a dual band AirPort Extreme, you can add another to "extend" both bands of your network to provide more  wireless coverage.
    The "best" way to do this is to connect the "remote" access point back to your main AirPort Extreme using an Ethernet connection. This preserves bandwidth on the network better than any other method...and...you can locate the "remote" Extreme exactly in the area where more coverage is needed. Instructions for thhis are here:
    http://support.apple.com/kb/HT4260
    You might be able to connect using wireless only, but this is always "Iffy".
    In general, the Extreme would need to be located approximately half the distance from your main router to the general area that needs more coverage. But, walls, ceilings and other obstructions usually come into play, requiring some experimentation. Instructions are here:
    http://support.apple.com/kb/HT4259
    If you elect to try wireless, you really won't know if things will work until you try. Recommend that you have a "Plan B" if wireless does not work for your purpose.

  • How can i create  excel sheet with multiple tabs using utl file?

    how can i create excel sheet with multiple tabs using utl file?
    any one help me?

    Jaggy,
    I gave you the most suitable answer on your own thread yesterday
    Re: How to Generating Excel workbook with multiple worksheets

  • How can i organize my contacts on multiple devices

    how can i organize my contacts on multiple devices

    What I ment was: How can I organize my contacts into groups without leaving the "Contacts" app.

  • How can I know which clients are connected to my network through express and which are connected through extreme?

    I have an airport express extending, through wireless, a network provided by an airport extreme. How can I know which clients are connected to my network through express and which are connected through extreme?
    Here you can see both routers:
    I would expect to some clients connected to the express, other than the extreme. And that's all I see: only the airport extreme appears as client of the airport express.
    Below, one can see the summary of the config for both routers.
    Would somebody explain it?
    Thanks,
    Marcelo
    Message was edited by: Marcelão

    please disregard this answer.
    Message was edited by: Marcelão

  • How can I forward a mail to multiple mail accounts that I have in a group without having to add them one by one?

    How can I forward a mail to multiple mail accounts that I have in a group without having to add them one by one?

    I don't think that you can. Yahoo's basic email features do not include mail forwarding.

  • How can I get an album with multiple artists to display in my Nano as one album insteadof multiple albums?

    How can I get an album with multiple artists to display in my Nano as one album insteadof multiple albums?

    See this page for helpful information.
    http://samsoft.org.uk/iTunes/grouping.asp
    B-rock

  • How can I remove people tags from MULTIPLE images in Organizer 13?

    How can I remove people tags from MULTIPLE images in Organizer 13?  The strategy for removing keyword tags does not work. It appears that keyword tags and People tags are considered something completely different in 13.  I highlight multiple images, right click, and under keyword tags it says there are no keyword tags. There does not appear to be an option for people or other tags. Can anyone help? It is going to take literally hundreds of hours for me to do this one photo one tag at a time.  ??

    Comp. 792 wrote:
    Hi, my linked images all have dashed lines at the bottom of the images. I searched for an answer and someone said to add:
    img a {text-decoration:none:}
    to the end of my CSS,
    That CSS is complete nonsense. The correct way to remove borders from around links is here: http://forums.adobe.com/thread/417110.
    If you want to get rid of dotted lines, they are almost certainly caused by the outline property. However, outlines around links are there for a reason: it provides a visual "you are here" clue to people who navigate the web with the keyboard, either through preference or because of disability. You shouldn't remove the dotted outline without providing a different visual clue.

  • How can I separate one column into multiple column?

    How can I separate one column into multiple column?
    This is what I have:
    BUYER_ID ATTRIBUTE_NAME ATTRIBUTE_VALUE
    0001 PHONE_NUMBER 555-555-0001
    0001 EMAIL [email protected]
    0001 CURRENCY USD
    0002 PHONE_NUMBER 555-555-0002
    0002 EMAIL [email protected]
    0002 CURRENCY USD
    0003 PHONE_NUMBER 555-555-0003
    0003 EMAIL [email protected]
    0003 CURRENCY CAD
    This is what I would like to have:
    BUYER_ID PHONE_NUMBER EMAIL CURRENCY
    0001 555-555-0001 [email protected] USD
    0002 555-555-0002 [email protected] USD
    0003 555-555-0003 [email protected] CAD
    Any help would be greatly appreciated.

    This is another solution. Suppose your actual table's name is test(which has the redundant data). create a table like this:
    CREATE TABLE test2 (BUYER_ID number(10),PHONE_NUMBER varchar2(50),EMAIL varchar2(50),CURRENCY varchar2(50));
    then you will type this procedure:
    declare
    phone_number_v varchar2(50);
    EMAIL_v varchar2(50);
    CURRENCY_v varchar2(50);
    cursor my_test is select * from test;
    begin
    for my_test_curs in my_test loop
    select ATTRIBUTE_VALUE INTO phone_number_v from test
    where person_id=my_test_curs.person_id
    and attribute_name ='PHONE_NUMBER';
    select ATTRIBUTE_VALUE INTO EMAIL_v from test
    where person_id=my_test_curs.person_id
    and attribute_name ='EMAIL';
    select ATTRIBUTE_VALUE INTO CURRENCY_v from test
    where person_id=my_test_curs.person_id
    and attribute_name ='CURRENCY';
    INSERT INTO test2
    VALUES (my_test_curs.person_id,phone_number_v,EMAIL_v,CURRENCY_v);
    END LOOP;
    END;
    Then you will create your final table like this:
    create table final_table as select * from test2 where 1=2;
    After that write this code:
    INSERT ALL
    into final_table
    SELECT DISTINCT(BUYER_ID),PHONE_NUMBER,EMAIL,CURRENCY
    FROM TEST2;
    If you have a huge amount of data in your original table this solution may take a long time to do what you need.

  • How can I specify SMTP Email Server userID and password when using Email VIs?

    How can I specify SMTP Email Server userID and password when using Email VIs included in Internet Toolkit?

    Hi,
    A similar question was posted on Discussion Forums soem time back. Please see the link below.
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000C7B00000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0
    You would find the last post in the above thread quite useful where it has a link to OpenG code. I am also copying that link for your reference.
    http://www.openg.org/tiki/tiki-index.php?page=OpenG+Internet+Connectivity+Tools
    Please feel free to respond to this post with any questions/comments you may have.
    Regards,
    Ankita A.
    National Instruments

  • HT4854 How can I load Mountain Lion to multiple Macs

    How can I load Mountain Lion to multiple Macs without downloading the huge 4Gb file to each machine?

    I've never done that, but I don't see why it wouldn't. There is no verification or authentication keys in the installer.
    If you need 20+ licenses*, then you might take a look at the volume licensing: http://www.apple.com/mac/volume-licensing/
    It describes the same process I described.
    * I think 20 is the minimum. Not sure, though.

  • How can i import the data from multiple sources into single rpd in obiee11g

    how can i import the data from multiple sources into single rpd in obiee11g

    Hi,
    to import from multiple data sources, first configure ODBC connections for respective data sources. then you can import data from multiple data sources. When you import the data, a connection pool will create automatically.
    tnx

  • How can a calender be synced with multiple apple devices

    how can a calender be synced with multiple apple devices so that all the users can be able to access the calender and also the entries done by one of them?

    Hi Muneshdm,
    Welcome to Apple Support Communities.
    See these articles for information on setting up iCloud on multiple iOS devices, as well as how to share calendars:
    iCloud: Set up iCloud on your devices
    http://support.apple.com/kb/PH2609
    iCloud: Share a calendar with others
    http://support.apple.com/kb/ph2690
    Best,
    Jeremy

  • IRecruitment:  How can I post a vacancies in multiple locations?

    iRecruitment: How can I post a vacancies in multiple locations?
    I have one opening that can be filled in PA or CT? How do I select multiple locations? Does iRecruitment allow us to create a National location so that a candidate will find the job based on either or all states?

    As Glenn said, these two types are the typical input files.
    two ways that I can easily think of, but there are more.
    1. Have a row memberwith the period so for sample basic, the row would look lik
    cola,ny,actual,sales,Jan,100
    First case in the rule file you have to map all the member fileds with the dimension name and the data column with the data field.
    2. Have the data for each month as as the column members
    Here is the header followed by a data sample(again for sample basic)
    Product,Market,Scenario,Measure,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
    1oo-10,NY,Actual,Sales,100,100,100,100,100,100,100,010,122,111,222,333
    Second case in the rule file you have to map all the member fileds with the corresponding dimension name and the multiple data columns with the corresponding member names for that dimension.

  • How can I list all the domains configured for Weblogic Servers?

    How can I list all the domains configured for Weblogic Servers?
    I saw a note, which says the following:
    "WebLogic Server does not support multi-domain interaction using either the Administration Console, the weblogic.Admin utility, or WebLogic Ant tasks. This restriction does not, however, explicitly preclude a user written Java application from accessing multiple domains simultaneously."
    In my case, I just want to list all the domains, is that possible by using any scripts?
    Thanks
    AJ

    If you use WLS Node Manager and the Config Wizard was used to create the domains, then the list of domains should be in a location like this:
    <MIDDLEWARE_HOME>\wlserver_10.3\common\nodemanager\nodemanager.domains
    Enterprise Manager Grid Control also has support for multi-domain management of WLS in a console.

Maybe you are looking for

  • How do you format cell size in numbers for multiple cells at the same time?

    How do you format the cell size of multiple cells at once in numbers?

  • Setting Partition in U400

    Hi everyone, I have just gotten U400. Currently, first bootup: C: 470GB and D: 30GB, which is the Lenovo backup files.  Need help in setting partition in the C:. Is there any ways to add another partition? I have used the Computer Management to set C

  • Can I get HD Quicktime video output via Windows 7

    How can I put this.  I have a fellow employee to states that it is impossible to produce HD quality QuickTime via via Windows 7.  Is this an accurate statement?

  • Oracle ADF Form Data was Not adding to DB.

    I have Created a Query Based VO(I have given Updatable:Always and i ahve checked in source that IsUpdateable="true"),and added that to AM,I Have created a ADF Form with CreateInsert Operation,When Click on CreateInsert Button It was creating an empty

  • Check overflow on another printer

    Hi All, I'm working on the check printing program in transaction F110 and program RFFOUS_C. Is there a way that the 1st page be printed on 1 printer and the overflow on another printer? The check preprinted form is in 1 printer and the plain paper in