Changing the Reply-To header from a Mailing List

Hi All,
I'm running JES 2004Q4, and I'm trying to set up a mailing list. The two ways I have done it so far, was to create a user and forward the mail from that user to the mailing list users using the forwarding options in the web mail gui, and the other way was to create a group and foward the mail to users that exist in the LDAP directory.
My question is, as you can guess from the topic subject.... Can I get the Reply-To address added to the mail envelope when mail is forwared from either the user or group??
This is so when people reply to a mail sent via the list, they will reply to the list and not the person who sent it.
I'm hoping I won't have to use program delivery and write a script to do it. :-)
Cheers and thanks,
Stuart.

One thing you need to understand is the difference between a "group" and a "list". Mails sent to a "list" automatically get the list name as "reply-to". Groups don't.
The difference is an ldap attribute. Please see the "provisioning guide", specifically the chapter on provisioning mailing lists:
http://docs.sun.com/source/816-6018-10/groups.htm#1000867
(I know this is the 5.2 provisioning guide, but this piece hasn't changed at all)

Similar Messages

  • IsSchemaValid does chang the xml-encoding header from UTF-8 to WINDOWS-1252

    I found the following effect:
    isSchemaValid does changing the encoding - entry of the xml-file-header
    generating xml-file by using DBMS_XMLGEN :
    xmldoc := DBMS_XMLGEN.getXML(ctx);
    with the header of the file is
    <?xml version="1.0" encoding="UTF-8"?>
    change the xmldoc to a xmlType
    and validate it against the schema
    xmldoc_xmlType:=(xmltype(xmldoc)) ;
    xmldoc_xmlType.isSchemaValid ( bSchemalocation)
    after this the header of the file is
    <?xml version="1.0" encoding="WINDOWS-1252"?>
    my DB:
    R11_2_0_2 / Windows 64
    the same in
    R11_2_0_1 / Windows 32
    select name, value from v$parameter where upper(name) like '%NLS%'
    nls_calendar     
    nls_comp          BINARY
    nls_currency     
    nls_date_format     
    nls_date_language     
    nls_dual_currency     
    nls_iso_currency     
    nls_language          AMERICAN
    nls_length_semantics     BYTE
    nls_nchar_conv_excp     FALSE
    nls_numeric_characters     
    nls_sort     
    nls_territory          AMERICA
    nls_time_format     
    nls_timestamp_format     
    nls_timestamp_tz_format     
    nls_time_tz_format     
    register my schema by:
    dbms_xmlschema.registerSchema(
    schemaurl => vschemaurl,
    schemadoc => xsd_file,
    local      => FALSE,      
    gentypes      => TRUE,      
    genbean      => FALSE,      
    gentables      => TRUE,      
    force      => FALSE,
    owner      => dbuser
    ,CSID      => nls_charset_id('AL32UTF8')
    How can I let or change back the xml-encoding entry to UTF-8 ?
    regards

    Your solution should not be relied upon...
    C:\Temp>sqlplus /nolog @t1 %CD%
    SQL*Plus: Release 11.2.0.2.0 Production on Fri Mar 4 09:41:32 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    SQL> spool testcase.log
    SQL> --
    SQL> connect sys/oracle as sysdba
    Connected.
    SQL> --
    SQL> set define on
    SQL> set timing on
    SQL> --
    SQL> def XMLDIR = &1
    SQL> --
    SQL> def USERNAME = XDBTEST
    SQL> --
    SQL> def PASSWORD = &USERNAME
    SQL> --
    SQL> def USER_TABLESPACE = USERS
    SQL> --
    SQL> def TEMP_TABLESPACE = TEMP
    SQL> --
    SQL> drop user &USERNAME cascade
      2  /
    old   1: drop user &USERNAME cascade
    new   1: drop user XDBTEST cascade
    User dropped.
    Elapsed: 00:00:00.24
    SQL> grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSWORD
      2  /
    old   1: grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSWORD
    new   1: grant create any directory, drop any directory, connect, resource, alter session, create view to XDBTEST identified by XDBTEST
    Grant succeeded.
    Elapsed: 00:00:00.07
    SQL> alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
      2  /
    old   1: alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
    new   1: alter user XDBTEST default tablespace USERS temporary tablespace TEMP
    User altered.
    Elapsed: 00:00:00.00
    SQL> set long 100000 pages 0 lines 256 trimspool on timing on
    SQL> --
    SQL> connect &USERNAME/&PASSWORD
    Connected.
    SQL> --
    SQL> create or replace directory XMLDIR as '&XMLDIR'
      2  /
    old   1: create or replace directory XMLDIR as '&XMLDIR'
    new   1: create or replace directory XMLDIR as 'C:\Temp'
    Directory created.
    Elapsed: 00:00:00.00
    SQL> create table XML_DEFAULT of XMLTYPE
      2  /
    Table created.
    Elapsed: 00:00:00.11
    SQL> create table XML_CLOB of XMLTYPE
      2  XMLTYPE store as CLOB
      3  /
    Table created.
    Elapsed: 00:00:00.01
    SQL> select *
      2    from nls_database_parameters
      3   where parameter in ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET')
      4  /
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CHARACTERSET               AL32UTF8
    Elapsed: 00:00:00.02
    SQL> declare
      2    XML_DEFAULT XMLType := xmltype('<?xml version="1.0" encoding="WINDOWS-1252"?><TEST>SELECT</TEST>') ;
      3    XML_CLOB    XMLType := xmltype('<?xml version="1.0" encoding="WINDOWS-1252"?><TEST>SELECT</TEST>') ;
      4  begin
      5    delete XML_DEFAULT;
      6    delete XML_CLOB;
      7    insert into XML_DEFAULT values (XML_DEFAULT);
      8    dbms_xslprocessor.clob2file( XML_DEFAULT.getclobval() , 'XMLDIR','XML_DEFAULT.xml');
      9    IF  XML_DEFAULT.isSchemaValid ( 'SCHEMALOCATION_DOES_NO_MATTER_FOR_TEST_CASE.XSD', 'SCHEMA_NO_MATTER') = 1 THEN  null; ELSE  null; END IF;
    10    commit;
    11    dbms_xslprocessor.clob2file( XML_DEFAULT.getclobval() , 'XMLDIR','XML_DEFAULT_IS_VALID.xml',nls_charset_id('WE8MSWIN1252'));
    12    dbms_xslprocessor.clob2file( XML_DEFAULT.getclobval() , 'XMLDIR','XML_DEFAULT_WIN1252.xml');
    13    insert into XML_CLOB values (XML_CLOB);
    14    dbms_xslprocessor.clob2file( XML_CLOB.getclobval() , 'XMLDIR','XML_CLOB.xml');
    15    commit;
    16  end ;
    17  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.27
    SQL> --
    SQL> host type XML_DEFAULT.xml
    <?xml version="1.0" encoding="WINDOWS-1252"?><TEST>SELECT</TEST>
    SQL> --
    SQL> host type XML_DEFAULT_IS_VALID.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <TEST>SELECT</TEST>
    SQL> --
    SQL> host type XML_DEFAULT_WIN1252.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <TEST>SELECT</TEST>
    SQL> --
    SQL> host type XML_CLOB.xml
    <?xml version="1.0" encoding="WINDOWS-1252"?><TEST>SELECT</TEST>
    SQL> --
    SQL>First, the character set changes because isSchemaValid() causes the document to be parsed and converted to the internal database character set, as does storing it in a table.
    It appear that your solution works in SQL because the semantics of SQL are such that it causes a 'copy' of the XMLType to take place before running the isSchemaValid() processing, were we to optimize away that copy as a result of a patch or performance optimization project then you solution would break...
    If you want the output in a particular character set you should force that using XMLSerialize or getBlobVal(charsetid). Unfortunately we don't have a convience method for writing BLOBS on DBMS_XSLPROCESSOR...

  • How do I change the order of addresses in a Mail list?

    I have been using Lists in Mail very successfully for a number of years but the addresses do not seem to be in any order - not alphabetical, not in the order I put them into the list.  Sometimes I need to NOT send an email to a person on one of my lists and finding their address amongst up to 65 addresses in BCC and deleting it is time wasting.  Does anyone know to to alphabetize the lists?

    Hi ozziejack123,
    Welcome to the Support Communities!
    The individual contacts are sorted first within the Contact application.  When you create a group in Contacts, the individual names in the group should keep the same sorting order.  Try resetting the name order for all contacts.
    Contacts (Mavericks): List contacts by first or last name
    http://support.apple.com/kb/PH15091
    Choose whether contacts’ first or last names are listed first, and whether they’re sorted by first or last name.
    Change the name order for all contacts
    Choose Contacts > Preferences, then click General.
    Select an option next to “Show first name.”
    Sort contacts
    Choose Contacts > Preferences, then click General.
    Use the Sort By menu to choose how to sort.
    I hope this information helps ....
    - Judy

  • How do I set the "Reply To" header in iOS Mail?

    On OSX Mail, I am able to type in a "Reply To" address of my choosing when composing mail.  On iOS, I can't figure out how to get the mail composition window to show me this field so that I can fill it in.
    I own a domain, and so I tend to hand out different addresses for every entity I deal with, making them up on the fly.  So, any solution that requires me to 'preconfigure' something is a non starter.
    Richard

    Hi,
    In SharePoint Designer 2013, we can click the code of the Data view web part. Then switch the tab to "OPTIONS". And then we can find the Folder Scope option, you can select "Show All Files of All Folders"
    to achieve your requirement.
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Mail -- How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    sorry, but I can't find the mail preference in the latest Yosemite OS. Do you know where I can find it?
    Thank you
    Don

  • Mac Mail Issue: I was having trouble sending to hotmail accounts from my Earthlink account, they had me go into Mac Mail preferences and make changes, now Mac Mail doesn't work AT ALL - any help changing the settings back to correct Mac Mail settings? I c

    I was having trouble sending to hotmail accounts from my Earthlink account, they had me go into Mac Mail preferences and make changes (because they claimed it was Mac Mail's fault, even though the hotmail error code said it's because Earthlink is blocked by hotmail), now Mac Mail doesn't work AT ALL - any help changing the settings back to correct Mac Mail settings? I can provide a transcript of the entire tech chat session, if that will help...

    both apostrophes are used correctly, thanks
    doesn't = does not (this is called a contraction)
    it's = it is
    Mac Mail's fault = possessive
    any help with the actual issue? thanks!

  • Changing the reply to address for emails?

    Is there a way to change the reply address when I send emails from the iphone. Due to the lack of exchange support I am redirecting my work emails to a gmail account and then grabbing them that way. I want people to reply to my work email when I send or reply from my iphone. Gmail has a setting to choose the reply to address but when i send an email from my phone it shows up as [email protected] and not the desired [email protected] Thanks

    I had the same issue - here's the fix.
    In your iPhone mail settings, select the account you want (in my case - and yours - it's the work account).
    Edit the Account Information section by inserting the e-mail address you want people to reply to in the "address" box. Then keep the incoming / outgoing mail server information set to your g-mail account. Your phone will now check your g-mail but address all your responses with your desired reply-to address.
    That's it...

  • Unable to remove the redundant group header from the bottom of page

    Hi,
    In one of my projects in I am facing a problem.
    I need to display the details of all available products of the company. While displaying the details, I need to group the products based on some criteria (like type of product, release date) and the grouping is upto 4 level grouping. Grouping criteria can se said as, I need to firstly group all the products based on the type, then on the Release Date and then on two of the client specific values on the Product.
    Along with this, the view of product details is a thumbnail view (Image on top with all details below that line after line) due to which I need to display multiple (5) products in one row.
    The problem which I am facing is:
    The most important criterion for the customer is that there should not be any wastage of space.
    Secondly, they also donu2019t want to see partial data like only the header data in one page and the Product related Data (Image and Info) on the next page.
    In my case, when first page has insufficient space for the next grouped products, it simply displays the group header on the first page. On the second page, it again displays the group header along with the data.
    For reference, images are available at:
    Image1: http://farm4.static.flickr.com/3454/3224626688_aa3cfb8236_m.jpg
    Image2: http://farm4.static.flickr.com/3373/3224626782_0501cf566f_m.jpg
    My requirement is to remove the redundant group header from the first page as it does not make sense without having any data below it.
    I have tried the following options:
    1. I tried to apply setting "Keep Group Together" on the group and "Repeat Group Header On Each Page". But when I apply this, when my second group has more than 5 products (two rows of data) and space on first page can accommodate only 1 row of data, it moves the data on to the second page instead of keeping the 1st row on first page and 2nd on second page. This solution is not acceptable to the customer as it wastes space.
    2. If I remove setting "Keep Group Together" on all the groups, but keep the "Repeat Group Header On Each Page" and remove the "Keep Object Together" in the details section, I can save space. But this is not acceptable to the user as it leaves dangling headers (Orphaned Header Information).
    Need some pointers to overcome this issue as it is very critical for me.
    Thanks in advance,
    Vibhav Agrawal

    Thanks Raghavendra for your reply.
    These solutions provided on the link are not useful for me because of the peculiar layout of my report.
    In my report I am supposed to show details of multiple items (upto 5/6) in a single row.
    All solutions suggest about adding additional header (below group header) and use the formula to use that header to put the data for initial first object and details section for the subsequent objects.
    But, since i need to display multiple items in same row...and data cannot be set as 'format with multiple columns' in the header, hence this solution does not work for me
    Thanks,
    Vibhav Agrawal

  • How to change the InfoView logo [Favicon] from the browsers address bar.

    Hi All,
    I am launching an Infoview in a new web browser from the netWeaver portal through a link.
    The favicon for potal is changed on the portal server.
    How I can change the InfoView logo[Favicon] from the browsers address bar?
    If anybody knows where that image is located on the BOE server where I can replace the icon with my company icon?
    Please advise!
    Awaiting Reply!
    Smita Thorat

    Hi,
    the icon has the name favicon.ico and can be found in the root folder of the Web AS /Portal.
    Favicons are images of the size 16x16 or 32x32 pixel in the Icon format (image/x-icon) and files have an .ico extension.
    You can either change the standard sap favicon directly on the WebAs server wich needs might be done after each support package.
    Regards,
    Kai

  • How can i Close the PO by changing the Qty to 6000 from 5.443,206???????

    Hi All,
    User wants the  PO with 240bags= 6000 Kg but the value is like this  240bags x 22.68kg  = 5.443,200 Kg(this is picking from material master in Alternate units of measure 100bags =2268)
    *As of now the PO status is:
    Ordered Qty: 240bags
    Delivery : 264.550 (User changed the Qty from 240 to 264.550 bags in delivery)
    PGI Qty: 264.550
    GR: 240 bags
    IR: not completed
    The fact is that they purchased 6000kg and they were able to add into the system just 5.443,206, and They need to add the rest into the PO:  556,794 kg (we have them in the warehouse)
    How can we do this?
    In order to close this PO they want to add remaining Qty
    i have tried to change the alternate unit of measure in the material master from 100bags=2268Kg to100bags=2500kg but this is not reflecting in the PO
    if i am trying to create a new PO the new AOU(to100bags=2500Kg ) is reflecting
    Please let me know how can i Close the PO by changing the Qty to 6000 from 5.443,206???????

    Hi,
    As per your posting i under stood the question like this.
    PO has been created for 240 bags which is 5.443,200 Kg ( As per the material master calculation).But user wants 6000kg.
    Delivery has been done for 264.550 bags at 100bags =2268 kg.Means 264.550*22.68 = 5999.94 almost 6000kg.
    And since PO is for 5,443,200 KG , GR has been made against this qty.
    At this stage please remove the new conversion change for the material since every transaction has been made against the PO it will not reflect.Also if there exists any transaction in pipe line will get effct due to this.
    Just change the PO qty to 264.550 bags and receive the GR for the remaining qty which is 24.55 bags .Sytem will allow this change.Also no need of additional Delivery or PGI. since already the PGI has been for 264.55 bags.
    Other wise if you want change the conversion factor for the material , please reverse the GR done and cancel the PGI at VL09 and delete the delivery and make the PO afresh and change the qty as per the 6000kg requirement and repeat the process.
    Please reply the result.
    Regards,

  • HT201342 How do I change the 'Full Name' on my iCloud Mail (and on my Apple ID as I think this is where it gets the name)? Thanks

    How do I change the 'Full Name' on my iCloud Mail (and on my Apple ID as I think this is where it is getting my Full Name? Thanks

    To change it on and iOS device, go to Settings>Mail,Contacts,Calendars...tap your iCloud email account, tap you iCloud account at the top, tap Mail at the bottom, then enter the name you want to use in the Name field at the top.
    To change the From name on your Mac Mail, go to icloud.com, sign into your account, open Mail, click the gear shaped icon on the top right and choose Preferences, go to the Accounts tab and enter the name you want to use in the Full Name field and click Done.  Then quit Mail on your Mac and re-open it.  Your new From name should now appear in the drop-down list when you compose a new email.

  • Change the default "mailto" program from Outlook to Gmail

    Trying to change the default “mailto” program from Outlook to Gmail, I was asked to add the Gmail in the secondary list. The path of Gmail in my computer is “C:\Program Files\Mozilla Firefox\firefox.exe “http://mail.google.com/mail”” and it cannot be added. Could you please give me a help?

    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

  • I want to change the privacy settings on my e-mail, I provided the password once and now it opens without one

    I want to change the security settings on my e-mail. I provided a password once and now it opens without one. I want to keep my messages private.
    == This happened ==
    Every time Firefox opened
    == When I updated.

    Websites remembering you and automatically log you in is stored in a cookie
    Tools > Options > Privacy > Cookies: "Show Cookies"
    See also [[Cookies]]

  • How to Change the Default SSH Port from Terminal ?

    How to Change the Default SSH Port from Terminal ?

    How to Change the Default SSH Port from Terminal ?
    now showing default SSH Port 22 i need change it pls help me how can do

  • How to Change the Default SSH Port from Terminal ? now showing default SSH Port 22 i need change it pls help me how can do

    How to Change the Default SSH Port from Terminal ?
    now showing default SSH Port 22 i need change it pls help me how can do

    How to Change the Default SSH Port from Terminal ?
    now showing default SSH Port 22 i need change it pls help me how can do

Maybe you are looking for