How to configure mail using portal collaboration

hi Guys..,
pls tel me
how to configure mail using portal collaboration and its uses..
thanks
regards
kamal

Hi,
Two Configure Email, first
You have to create a System for Groupware through System Administration ->System Configuration -> system LandScape
Then create a Groupwaretransport
implement SSO between your Mail server and your EP...
and finally
Create a Mail service...
More Info is available at below link..
http://help.sap.com/saphelp_nw04/helpdata/en/7c/6a469702474146a8ef2f97fe880b2f/frameset.htm
and have a look at the thread raised by be on Calender Configuration...
Collaboration calendar : No transport has been configured for the calendar
Regards,
Srinivas

Similar Messages

  • How to configure Mail Services in B1

    Hi All,
    I want to cinfigure the mail services in SAP B1 currently I am using SAP 2007 SP00 PL 12 My client wants that the daily reports and the Sales order should be mailed by B1 to cuntomer mail id. PLease tell the process to how to configure mail services in B1.
    Thanks & Regards
    pankaj Sharma.

    Hi Pankaj Sharma,
    The suggestion above would be a good solution to you.  However, if you do not want to use this add-on, you may just configure SBO-Mailer to perform the task. You may check all available setting for the mailer and read through Administrator Guide for how to set it up.
    Thanks,
    Gordon

  • How to Configure Mail in ECC5.0

    Dear All,
    Please guide how to configure Mail in ECC5.0
    i have Activate / enabled  SMPT  using  the T-code :  SICF
    using Transaction : SCOT
    for SMTP Connection :
    mail host :  localhost
    mail port : 25
    Code Page :  ????????????  what should i give  i have given 1100 SAP  internal  (correct or wrong) Please guide
    Supported Address Type:
    Selected Internet
    what should i give in "Address Area"  and "output format for SAP documents"
    when i am sending a mail using : SWBP  and checking in SOST message error 272 i am getting.
    Regards
    Shankar

    Dear all,
    we are not using Exchange Server.
    we enabled the Port 25 . we are able to telnet to the mail server.
    Using SICF activate SMTP port.
    when i am trying to send  using SBWP t-code : getting
    "error during send process " when we check further  " you do not have a sender address in the  choosen communication method".
    Regards
    Shankar.

  • TS3276 how to configure Mail ?

    Hi !
    How to configure Mail only to fetch a specific amount of messages on its first use?
    I'm using Mac OS X Lion 10.7.4 with Mail v. 5.2.
    Thanks a lot!

    Hi !
    How to configure Mail only to fetch a specific amount of messages on its first use?
    I'm using Mac OS X Lion 10.7.4 with Mail v. 5.2.
    Thanks a lot!

  • How to configure the ESS portal in ehp 6 server?

    Dear All,
    Pls advice me how to configure the ESS portal in my client server?
    I want to create new iviews ,pages,workset and link them all to R/3,with total configuration steps please.
    Thanks and Regards,
    Pradip

    hi pradeep ,
    which version r u using wdjava or abap ? ......if ur using java you have to do all in home page framework and if you are using with launchpad from   EHP5 better you can create it from launchpad by going to t -code LPD_CUST and select the ROLE:ESS and INSTANCE: MENU
    REFER Below............
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e09b3304-07d8-2b10-dbbf-81335825454f?QuickLink=index&overridelayout=true&38388417774934
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a?QuickLink=index&overridelayout=true&5003637159921
    http://wiki.scn.sap.com/wiki/pages/viewpage.action?pageId=31476&bc=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/108c31e7-b6a7-2d10-3692-c1a9f7a5c4dc?overridelayout=true

  • How can send mails using hotmail/rediffmail domain name?

    I have used the below code to send a mail using javamail API?Even when I am sending my application does not have notified any of error/exceptions,But the message is not reached to I have given receipient's address in the to field.
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class Sendmail1 extends HttpServlet {
    private String smtpHost;
    // Initialize the servlet with the hostname of the SMTP server
    // we'll be using the send the messages
    public void init(ServletConfig config)
    throws ServletException {
    super.init(config);
    smtpHost = config.getInitParameter("smtpHost");
    //smtpHost = "sbm5501";
    smtpHost = "www.rediffmail.com";
    public void doGet(HttpServletRequest request,HttpServletResponse response)
    throws ServletException, java.io.IOException {
    String from = request.getParameter("from");
    String to "[email protected]";
    String cc = "[email protected]";
    String bcc ="[email protected]";
    String smtp ="www.rediffmail.com";
    String subject = "hai";
    String text = "Hai how r u";
    PrintWriter writer = response.getWriter();
    if (subject == null)
    subject = "Null";
    if (text == null)
    text = "No message";
    String status;
    try {
    // Create the JavaMail session
    java.util.Properties properties = System.getProperties();
    if (smtp == null)
    smtp = "www.rediffmail.com";
    properties.put("mail.smtp.host", smtp);
    Session session = Session.getInstance(properties, null);
    //to connect
    //Transport transport =session.getTransport("smtp");
    //transport.connect(smtpHost,user,password);
    // Construct the message
    MimeMessage message = new MimeMessage(session);
    // Set the from address
    Address fromAddress = new InternetAddress(from);
    message.setFrom(fromAddress);
    // Parse and set the recipient addresses
    Address[] toAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.TO,toAddresses);
    Address[] ccAddresses = InternetAddress.parse(cc);
    message.setRecipients(Message.RecipientType.CC,ccAddresses);
    Address[] bccAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.BCC,bccAddresses);
    // Set the subject and text
    message.setSubject(subject);
    message.setText(text);
    Transport.send(message);
    //status = "<h1>Congratulations,</h1><h2>Your message was sent.</h2>";
    } catch (AddressException e)
    status = "There was an error parsing the addresses. " + e;
    } catch (SendFailedException e)
    status = "<h1>Sorry,</h1><h2>There was an error sending the message.</h2>" + e;
    } catch (MessagingException e)
    status = "There was an unexpected error. " + e;
    // Output a status message
    response.setContentType("text/html");
    writer.println("<title>sendForm</title><body bgcolor= ><b><h3><font color=green><CENTER>CALIBERINFO.COM</CENTER></h3>Your message was sent to recepient(s).<br><font color=red>"+"\n"+to);
    writer.println("<br><br><a href=e:/mail/javamail/mail.html>back to compose</a>");
    writer.close();
    Please any one help me out from this probs.
    Awaiting for yours reply,
    or give me a reply to: [email protected]
    Regards,
    @maheshkumar.k

    Hi,
    how can send mails using hotmail/rediffmail domain name?In your java application,you specified www.rediffmail.com as your
    smtp server.But that is the address of that website.Try will a smtp
    server instead.For a list of free smtp servers,please visit http://www.thebestfree.net/free/freesmtp.htm
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support/

  • How to configure the use of WS-RM in "PI 7.11 EHP1?

    How to configure the use of WS-RM in "PI 7.11 EHP1?
    Currently in the editing window of the communication channel (adapter type WS), I can not see any options regarding Reliable Messaging protocol (WS-RM).
    The scenario that is required is as follows.
    (Consumer WS-RM) -> (Provider WS-RM PI 7.11 EHP1) -> (ABAP Proxy Backend NW 7.0)
    I would greatly appreciate any help,
    Thanks,
    Roger.
    Edited by: Roger Solano on Apr 7, 2011 10:31 PM

    WS adapter supports WS Reliable Messaging.  But WS adapter is used to communicate between two SAP web service runtime. 
    Check this blog and its links for understanding direct connection or point to point communcation using WS adapter
    /people/william.li/blog/2008/02/13/point-to-point-connection-using-abap-in-sap-using-pi-71
    Hoe that helps.

  • How to configure Mail app on mountain lion to not download all my emails in hotmail server. I need only just 1-2 weeks

    How to configure Mail app on mountain lion to not download all my emails in hotmail server. I need only just 1-2 weeks

    Try going to the web based site and see if you can set up a temporary folder there. Move anything you don't want to download to that folder.

  • 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...

  • How to configured mail Alerts in OEM 12c for WebLogic Servers up/down status?

    Hi,
    I am new in Oracle Enterprise Manager so please tell me How to configured mail Alerts in OEM 12c for WebLogic Servers up/down status?
    Thanks,
    Sagar Pawar.

    Hi Sagar Pawar ,
    First you need to set the email notification :
    Kindly review :
    12c Cloud Control: Steps to Configure Incident Rules to Send Notifications or
    Manage Events / Incidents / Problems (Doc ID 1368036.1)
    12c Cloud Control: Steps to Configure Email Notification Method (Doc ID 1368262.1)
    Regards
    Ansari

  • How to configure and use jboss cache

    Hi,
    I need to use Jboss Cache in our application,
    But i don't know anything about Jboss Cache...
    can u tell me requirements and configuration for this?
    and i am using jboss application server 3.2.3..
    and apache-ant-1.7.1, jdk1.6.0_06, jbosscache 2.2.0
    can u tell me how to configure and use jboss cache?
    Thanks & Regards
    Thilkumar

    Go to the JBoss web site and read up on the documentation there.
    And if you still have any questions you'll probably get better answers at the JBoss forums than in these forums.
    - Roy

  • How to Configure and Use Oracle's JMS Connector with Tibco EMS

    Jeff,
    I am getting the below exception while try to do the deployment of the sample provided on 'How to Configure and Use Oracle's JMS Connector with Tibco Enterprise for JMS'
    While deployment not able to get the 'TibcoJMSReference',
    As I understand in the 'orion-application.xml for the below, unable to get the instance. Could you adivce how I can enable the trace more?
    <resource-provider class="com.evermind.server.deployment.ContextScanningResourceProvider" name="TibcoJMSReference">
    could you help to resolve the issue?
    Error
    Operation failed with error: No resource named 'TibcoJMSReference/TibcoXACF'found

    Hi,
    I'm also looking for the same 'Configure and Use Oracle's JMS Connector with Tibco JMS to consume message'. If you have already implemented and working fine, please let me know the steps and some documents.

  • How to configure Mail to use different ports for POP and SMTP?

    I am trying to configure Mail for my AT&T account. It requires me to configure POP (incoming) mail for port 995, and SMTP (outgoing) mail for port 465. However there doesn't seem to be an option to configure different ports for these. Is that correct, or am I missing something?
    Alternatively can I configure two accounts, one for POP incoming and one for SMTP outgoing? My incoming POP account does work, but in configuring an outgoing account I still have to configure a POP server name and that will not work for the outgoing port.
    Any advice on how to solve this would be appreciated.

    Understand. It is really quite easy to do in Mail, too. Kappy told you how to set up the smtp piece. I gave you pop info. These two things are on different panels within Account Preferences.
    To recap his and my posts
    SMTP:
    In Mail Prefs, click on the accounts icon. Click on your att yahoo account on the list. On the right of the window, in the lower portion, you see an smtp server menu. Open it and select edit. Select Edit Server, then click on its Advanced tab. Set up port 465 with SSL.
    POP:
    This is on a different panel in Mail PRefs Accounts. Now in Mail Prefs, click on the accounts icon. Click on your att yahoo account on the list. On the right of the window, you see three tabs, acc't info, mbox behaviors, and Advanced. This is where things are different than for smtp. You are going to configure stuff on a different "advanced" panel than where you were for the smtp stuff. Click on the advanced tab. There is a field for port with a SSL checkbox next to it and an authentication drop down menu. Check the box and it should quickfill change from 110 to 995. Autentication drop down is probably already default to password.
    Did you visit the URL I gave you previously? It even gives you screen shots.

  • How to configure to use Strut 1.2 in weblogic portal 10.3.2

    I am new in weblogic portal, now i need to develop Strut portlet version 1.2. But I don't know how to configure it in weblogic 10.3.2 and i can't find document for how to configure Strut 1.2 to work on weblogic portal 10.3.2. I added relation libraries and configure like in weblogic document of oracle. But it's can not run and throw some exceptions like : can not render jsp file. Someone can tell me how to configure Strut 1.2 to develop Strut portlet ? Thanks in advance!

    This would be a good place to start:
    http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14243/integrate.htm#BABBEHCH
    Brad

  • How to configure mail option in newly added discussion forum portlet.

    Hi,
    i added a discusion forum portlet in Oracle App Server portal. here all the features are working except mail notification facility.
    Please suggest me, how to configure that?
    Dhananjay

    If you cannot see the device then it is not attached or mapped by multipath.
    Are you using the same kernel on both servers?

Maybe you are looking for

  • Send IDoc to Multiple Ports

    Hi, I have a custom IDoc message type YYY17101[Custom Type]. I need to send IDoc using this message type to 2 different rfc destination. The two RFC are 1. SAP R/3 system 2. XI system My question is which partner profile type i have select to send ID

  • Update will not start automatically

    it will not start the update. It says update will start up automatically. It does not... I have shut down my firewall, it starts up a searchporthole ? NKVD ? and Advertising.... I have tried many times with or with out firewall... I have updated to d

  • Siebel 8.0 Program schedule - Deletion of program doesn't delete/remove the association of campaign with that

    I just wish to get answers to couple of questions that we have as issues in our Siebel Marketing 8.0.0.13 ( Recently we upgraded from 8.0.0.5 to 8.0.0.13 (20448)) 1. The program design flowchart ( Program Container BC) icons does not appear as icons

  • DMS Vault - check in a new version

    Hello.  I created a vault for the DMS.  It correctly places the files onto the server, and they are accessible.  However, it not longer's allows for versioning.  The 'check in as a new version' is grayed out.  Any ideas why? Thanks,  Graeme.

  • Device not accessible

    I burned two DVDs, then went to copy a disk image and burn in via Disk Untilities and it didn't work (I don't remember the error message; when I try to burn from DU now it freezes up). Now, when I try to burn in Studio Pro it does all the formatting,