Second mail service configuration or others transport protocols to send form content

Hi
we actually use the mail service for several forms. We have now a new requirement, where we need to use a different target for one specific reporting form.
Questions are:
Is it possible to configure a second mail service (other mailhost)?
Is it possible to integrate others transport protocols to send the content (SOAP/REST Webservice calls, JMS Queue Producer, externe HTTP/POST calls)?
Do you have another suggestion?
Thank you
Best regards
Stéphane

Hi Stéphane,
  *  AFAIK not possible with OOB to configure 2 mail servers & need to implement at project level. You might need to create a custom email service. Example  http://helpx.adobe.com/adobe-cq/using/creating-custom-cq-email-services.html
  *  One of the option to make external calls is to utilize WorkflowExternalProcess http://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/workflow/exec/WorkflowExternalPro cess.html
Thanks,
Sham

Similar Messages

  • ERROR: Cannot start mail services, configuration directory does not exist

    I'm running an Xserve G5 with one internal boot drive and one RAID using the other two internal drives. I used Apple's Disk Utility to set-up the RAID.
    Back in early December, I moved my mail database and mail store to the RAID. Ever since, when I restart the server, the mailaccess.log generates the following error:
    Jan 23 18:51:33 mail master[47]: ERROR: Cannot start mail services, configuration directory does not exist: /Volumes/RAID/mail.data/db
    I'm speculating this is a timing error that gets created when Postfix initially can't find the RAID. Then, it must try again and find it because the error message does not repeat and mail starts running.
    Is this something to worry about?

    Hi Joel,
    You're right, it's a timing issues. The mail system is ready for work before the file system is mounted. It's benign.
    Jeff

  • Mail Service - configuration.

    Hi everyone,
    this is my first post
    on this forum so greetings to all.
    <br
    />Question:
    How to run Mail
    Services on Primavera?
    My
    Primavera 6.1 is working on Windows 2003 SB Server. On
    this machine I've install smtp service and configure an
    account form primavera to use as e-mail from witch
    notifications will be send. In Primavera administration
    I've set the Mail Service with proper settings. I've turn
    on notifications.
    Thats all <br
    />
    Thanks for all reply and sorry for my
    poor English knowledge.

    Hello,
    I recommend that you
    contact Support, which can be reached at
    http://primavera.com/customer/support.asp.<br
    />
    A Support Representative can walk you
    through the e-mail configuration for P6.<br
    />
    Have a great day,
    Justin

  • Issue on OSB business service configuration with email transport

    Hi,
    I am trying to create a Business Service with email Transport configuration. While creation, I have selected ServiceType as MessagingService.Then in Message Type Configuration page have selected Request Message Type as Text and Response Message Type as None. Now in Transport Configuration page email option is not showing in protocol.It's only showing http , jms option there.
    While I tried the same in some other OSB installation environment I am able to find email option in Protocol.
    Any  idea what could be potential reason of it.How can I able to see email option in Protocol ?
    Regards,
    Subhra

    Hi,
    Please check the state of Email Transport Provider in the admin console it should be in the active state , and also Go to JMS Module --> jms resources and check dist_wlsb.internal.transport.task.queue.email_auto.
    its heath and assosiated member will be working fine.
    Regards
    Bharat

  • Mail server log says: master[50]: ERROR: Cannot start mail services...

    Recently, after a year or more of relatively smooth service, my OS X Server 10.4.11 Mail services has been locking up daily.
    I was finally able to get some information from the log files (I am a noob to this) and saw the following right after my most recent reboot of the server:
    Oct 5 09:51:11 mm1 master[50]: ERROR: Cannot start mail services, configuration directory does not exist: /Volumes/Data/mail/var/imap
    I checked the server and that directory is indeed there on the partition named "DATA", so I am baffled as why the server does not thing the configuration directory exists?
    drwxr-xr-x 15 cyrusima mail 510 Oct 5 09:51 imap
    drwxr-xr-x 15 root admin 510 Oct 3 20:01 imap.BAK
    drwxr-xr-x 15 cyrusima mail 510 Oct 3 20:05 imapold10032009-200707
    drwxr-xr-x 4 jkoerber admin 136 Dec 3 2007 spool
    mm1:/Volumes/Data/mail/var jkoerber$
    Can anyone help me? My customers are yelling for blood because they cannot send/receive emails.
    -- Jon
    Message was edited by: Jon Koerber

    Thanks Alex for the feedback. You are helpful as always!
    It's good to know that the message I am getting from the mail server about the configuration files is only a temporary thing. Although I find it strange that the mail service doesn't know where its config files are since it is specified in the mail server setup.
    I looked at the log files you mentioned and do not see anything that looks like a specific problem with the mail services themselves.
    Recently, however, I have been having recurring problems where my mail server and my Web/Database server have both become unresponsive at nearly the same time even though they are on different class A networks to where I cannot access them via ARD, Server Admin and even SSH. That is usually when my mail server goes offline. I was afraid it was because of that configuration error I was seeing, but think now that the problem could be something else entirely (maybe some kind of network problem or denial of service hacking attack, no idea).
    Thanks again.
    -- Jon

  • How may I automatically stop and start Mail services at a set time please

    Hi folks. I was wondering if anyone could tell me how to automatically stop and start Mail services (or any other services) at a set time please in Leopard Server? Is there a script someone has created which might help?
    Cheers, David ( a realy newbie when it comes to administering OS X server)

    launchd works through a series of XML documents that define tasks to run, either at launch, on a time schedule, in response to network events, etc.
    So you'll need to create two .plists - one to start the mail server and one to stop it. They should be saved in /Library/LaunchDaemons. I'd suggest something like:
    /Library/LaunchDaemons/local.postfix.stop.plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple
    .com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>Label</key>
      <string>local.postfix.stop</string>
      <key>ProgramArguments</key>
      <array>
        <string>/usr/sbin/serveradmin</string>
        <string>stop</string>
        <string>mail</string>
      </array>
      <key>StartCalendarInterval</key>
      <dict>
        <key>Hour</key>
        <integer>1</integer>
        <key>Minute</key>
        <integer>00</integer>
      </dict>
    </dict>
    </plist>
    and /Library/LaunchDaemons/local.postfix.start.plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple
    .com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>Label</key>
      <string>local.postfix.start</string>
      <key>ProgramArguments</key>
      <array>
        <string>/usr/sbin/serveradmin</string>
        <string>start</string>
        <string>mail</string>
      </array>
      <key>StartCalendarInterval</key>
      <dict>
        <key>Hour</key>
        <integer>4</integer>
        <key>Minute</key>
        <integer>00</integer>
      </dict>
    </dict>
    </plist>
    You'll need to either use launchctl load /Library/LaunchDaemons/local.postfix.stop (or start) to load the tasks, or reboot your server.
    I'm curious, though, as to why you want to do this. Mail is typically one of the services that people want to run 24/7 so they don't miss out on any emails (even though SMTP can tolerate this). Why do you want to shut yours down?

  • Questions about Mail Service and Campaign in Portal 8.1

    1.How to disable batch mode email in portal 8.1 Mail Service using
    Campaign?
    2.For batch mode email, when will it deliver?
    3.Where can I admin those parameter besides the fields mapping in
    portal Admin->Campaign Server and Mail Service?

    The docs haven't been moved over to the 8.1 docsite, but the 7.0 docs
    for campaigns are still pretty much valid in 8.1. Look at:
    http://e-docs.bea.com/wlp/docs70/dev/cmpaign.htm#998197
    for more information.
    Basic answers:
    1. You can't from a campaign. It will always batch emails in the database.
    2. Use the bea/weblogic81/portal/bin/mainmanager.bat|sh script, which
    uses the com.bea.p13n.mail.MailManager command-line java class (JavaDoc
    at http://e-docs.bea.com/wlp/docs81/javadoc/index.html). This can be
    invoked from cron or at for regular email delivery. Also, the emails are
    deposited in the MAIL_* tables
    (http://e-docs.bea.com/wlp/docs81/db/4Schemas.html#1064602), so you
    could implement a delivery system from that as well.
    3. There are no parameters since the email delivery is invoked from a
    command-line process.
    Greg
    surfboy wrote:
    1.How to disable batch mode email in portal 8.1 Mail Service using
    Campaign?
    2.For batch mode email, when will it deliver?
    3.Where can I admin those parameter besides the fields mapping in
    portal Admin->Campaign Server and Mail Service?

  • Securing Apple Mail services?

    Hi,
    I've got an PPC Xserve with OS 10.4.11 and I'm using it as a mail server (for Mac and Windows users, via IMAP, Webmail and, rarely, POP3).
    Right now, in order for everyone to have access to it, I've selected 'plain' and 'clear' under IMAP, 'clear' under POP and nothing under SMTP.
    We also don't use SSL (yet).
    What exactly would I have to do to really secure this mail server? (buy a SSL certificate to start I guess ;))
    And what would change on the client machines? I guess their IMAP, SMTP and/or POP settings will have to be adjusted?
    Thanks a lot!

    Hi
    A great resource for OSX Server's Mail Service:
    http://osx.topicdesk.com/content/category/4/18/62/
    Most people looking to secure Mail Service's generally start with:
    http://osx.topicdesk.com/content/view/38/62/
    http://osx.topicdesk.com/component/option,com_weblinks/catid,19/Itemid,76/
    There is lots of useful information on the relevant Mail Board. I'm not associated with the site in any way and if you use it consider a donation. You could also try learning more about Postfix:
    http://www.postfix.org/
    If all this seems hard/difficult consider using an Apple Mail Server Specialist. OSX Topic Desk has helped out many people in the past as has this site:
    http://mac007.com/
    http://www.walcott.com/
    http://www.redpaw.co.uk/
    There are others which you could google for yourself.
    Tony

  • Transport Protocol

    Hello all,
    I am implementing a transport protocol that sends data from one source to another over multiple paths. The protocol is to work as follows:
    When the protocol receives data, the data will be fragmented into TCP segments. Then TCP connections will be opened in the available paths to the destination and each segment will be
    transmitted in one of the connections. The TCP connections are independent of each other.
    Before the protocol can open TCP connections to the destination, it has to know the available paths provided by the network to the destination. This is where I have problems. Do you have any
    idea how I can get this information? Also the destination has to know the path of each packet for retransmission purposes in case the packet gets lost.
    Any help is appreciated.
    Thanks
    Mpho

    Ummmm... if you're doing this with Sockets, the TCP/IP protocol stack does all of this work for you...
    I think I haven't understood you question, sorry.

  • Can a BPEL process wait for a second web service call

    Hi,
    My BPEL process is an asynchronous process, so the first web service call kicks off an instance of the process.
    what i want is somewhere down in the process i can put a "receive" shape to pause the process and wait for another web service call to come in, once the "receive" shape gets the second web service call, the process continues on.
    Is that a valid thing to do on BPEL?
    i don't seem to be able to get it working.
    i could change the WSDL for the BPEL process to publish two operations, the default "initiate" and another one called "continue", they both accept the same type of request message.
    but when i test it, the BPEL process just can't accept message at the second operation, it always creates a new instance to handle the web service calls, even when the call is targeting "continue" operation.
    Any ideas?
    Thanks in advance!

    I was just about to give up after the last post but then the "pick" shape hit my eye somehow ("thank God", that's all i can say)
    and it did the trick, the "pick" shape can wait for an incoming call from a partner link.
    so what i can achieve is this,
    the first web service call sends some thing like
    <Root><CorrelationId>1</CorrelationId><Content>first name</Content></Root>
    on the "initiate" operation, just like calling an "initiate" method in java code
    the BPEL instance gets initiated, reaches the "pick" shape and stops
    then a second web service call comes in as
    <Root><CorrelationId>1</CorrelationId><Content>last name</Content></Root>
    on the "continue" operation, again just like calling a "continue" method
    it works!

  • QuickMail Server to 10.5 Mail Services Migration?

    We will be migrating our file server to 10.5.2 Server on a Quad Core Mac Pro.
    So, we are considering moving our email server from an old G4 running QuickMail Pro Server 3.5.3 on to the 10.5.2 Server. Should we just move the QuickMail Pro application and associated files or should we migrate to the 10.5 Mail Services?
    I have not been able to determine if QMPro will even run under 10.5, information and support for it is very limited.
    Any insight into these options?
    Thanks
    Fred

    Tony
    If your clients are using POP accounts there should be nothing to transfer? If >they are using IMAP accounts, create POP accounts, download mail to those >accounts, bring the new server online, upload mail back again.
    How does one transfer waiting mail from the QMServer to the 10.5 Mail Services?
    Fred

  • Newie Mail server and running other services

    We have a small office network of 6 macs that connect to a Panther server, this server provides DNS and file sharing and thats about it a Filemaker Sever and Retrospect Server. I doesn't suffer from heavy use
    I have been using a a separate mac to run Quickmail server 1 (os9) and I need to upgrade it as some of the mail protocols are out of date.
    We have a static IP address assigned to our mail gateway by our service provider.
    My question or advice
    Should I just start using OS X server to run mail services
    or
    Upgrade Quickmail and continue running it separately on a new mac mini (or similar)
    My concerns are at the moment any problem with email locally can be solved pretty much without effecting the other server or the network.
    Thanks

    The basic setup is prety simple...
    Replace following with your own equivalents...
    Domain name: woopee.com (the domain name after the "@" in your emails)
    Host name: mail.woopee.com (the hostname your MX record points to. Does not need to match server hostname. This will be the hostname mail server uses when communicating with other servers)
    Local Host Aliases: woopee.com (a list of the domains you want to accept mail for. Probably just same as Domain name?)
    Local network: 192.168.10.0/24 (LAN IP range for local users. Used to bypass authentication when they send mail out)
    Server Admin-> Mail-> General...
    Tick:Enable POP
    Tick:Enable IMAP
    Tick:Enable SMTP, Allow incoming mail, Enter Domain name & Host name (from above).
    Mail-> Relay
    Tick: Accept SMTP relays... Enter localhost IP: 127.0.0.1/32 and Local network (from above).
    Tick: Use these junk mail rejection servers. Add: zen.spamhaus.org
    Mail->Filters
    Tick: scan for junk mail. Minimum score: 5 (can be reduced later)
    Junk mail should be: Delivered (will just tag and forward to recipient)
    Tick: Attach subject tag: * Junkmail *
    Tick: Scan email for viruses
    Infected messages should be: Deleted
    Tick: update junk mail & virus database: 1 time per day
    Mail->Advanced->Security
    SMTP: none (this prevents smtp authentication from anyone outside your Local network)
    IMAP: Tick: Clear, Plain, Cram-md5 (or leave all unticked if only using pop accounts)
    POP: Tick: APOP
    Mail->Advanced->Hosting
    Local Host Aliases: Add: localhost & woopee.com (separate entries, see Local host aliases, above)
    That's it (I think ...although I cannot guarantee I have not missed something). There will be no problem setting this up and seeing it going whilst still using the existing mail server. Set up client accounts to send and receive from new server and you can send mail around internally to test. Last thing would be to change your firewall port-forwarding for SMTP from existing server to new one.
    Watch the mail.log in Console for any errors & do plenty tests.
    Ensure users have mail enabled in Workgroup Manager.
    There are plenty mods available beyond this. Have a good read through the mail services manual (I know its a bit confusing at times) and you should see where the above settings fit in.
    Lots of stuff on the forum here which you can search for. Spam filtering in particular can be made far more effective but requires editing of the underlying unix configuration files - again, plenty of previous discussions about that on forum. Meantime, the zen.spamhaus.org RBL will filter out a great many spammers.
    -david

  • Transport protocol SMTP in Mail Sender Adapter

    Hi Experts,
    How can I use SMTP as the Transport Protocol instead of POP3 / IMAP4 protocols in the Mail Sender Adapter.
    I am referring Note 856599 - FAQ Mail Adapter.pdf but not getting a l
    " 9. Other Questions
    Q: How can I configure my sender channel for my SMTP server?
    A: You can specify your SMTP server as URL. For example, if your
    server is called host, your URL should look like
    smtp://host:port/ "
    Regards,
    Shobhit

    Hi
    How can I use SMTP as the Transport Protocol instead of POP3 / IMAP4 protocols in the Mail Sender Adapter.
    In case of sending mail from XI you can use SMTP. To read mails you need POP3
    IMAP works for both.
    Yes in XI mail adapter receiver type. URL field you can use URL like
    SMTP://Mailhost.com
    Refer this
    The specified item was not found.
    Thanks
    Gaurav

  • How to configure mail service in DRM 11.1.2.3.500

    How to configure mail service in DRM 11.1.2.3.500.
    There is a feature in Workflow Models to Notify users by sending mail.
    Can anyone help me find from where to configure mail service.

    Hi,
    If you open up the Configuration Console on the DRM Server you should be able to navigate to the second tab called "Host Machines".
    From there, select SMTP Server - and enter the details for your SMTP server. You've now configured DRM to send emails... now you just need to add it into your workflows...

  • Error during configuring mail Service

    Dear BASIS Gurus n Experts,
    Can we configure the mail services on SAP without having a exchange/mail Server.
    For this I have tries following but it is not working:
    In Systems Default profile I have added: icm/server_port_1 PROT=SMTP,PORT=25,TIMEOUT=180, than
    1. Used transaction SCOT
    2. From top menu: View -> System Status
    3. Double Click on SMTP
    4. In Pop window entered description
    5. Ticked on "Node in use" box
    6. Entered the SMTP server name
    7. Entered port 25
    8. Clicked on the button next to Internet called "Set"
    9. On next window Enter the * in "address area" box.
    10. Click Continue --> Continue buttons to exit the main window
    11. From top menu: Settings -> Default Domain enter the domain name as "companyname.com"
    12. Now defined the job to process the mail, from top menu: View -> Jobs
    13. From top menu: Job -> Create
    14. Enter a name as SMTP
    15. Click on "INT" in the list then "Schedule job" button
    16. Entered start date and time, then click on "Schedule Periodically" button
    17. Entered  10 minutes.
    Now I create a message in workplace, and send it to a mail id but get an error  message:
    Definately cannot transfer message to node SMTP due to connection error
    Please Guide me where I am wrong.
    Thanks in advance. Early response will be highly appreciated.
    DSC

    Dear Venktesh,
    In SMICM --> Go to service, I found two entries:
    No.  Protocol               Service Name Port                     Host Name                    Time Out           active        Ext. Bind
    1.     HTTP                   8000                                            Development                60                    X                X
    2.     SMTP                  2500                                            Development                180                  X
    When I try to send a mail I found following error:...
    Definately cannot transfer message to node SMTP due to connection error
    Message no. XS816
    Diagnosis
    Due to a technical fault, the system could not set up a connection to the RFC destination Check port and mail server for SMTP nodes. Therefore, the message could not be transferred to node SMTP.
    System Response
    The system was unable to transfer the message.
    Additional information of the node used (in the system language of the node):
    Procedure
    Check the connection from R/3 to node SMTP. Perhaps the node is not assigned to the correct RFC destination. If so, correct this in Customizing.
    Otherwise use RFC destination management to check the RFC connection to destination Check port and mail server for SMTP nodes.
    If R/3 is in productive operation, it is advisable to reroute provisionally to another node.
    You should therefore notify your system administrator.
    Please suggest.
    With thanks,
    DSC

Maybe you are looking for