How many ways we can configure SMTP Mail server on windows to get CCP mails

Hello IAC's,
I have configured SMTP server and teleneted  in CCP server and also I'm receving mails too when I submit the orders.
I wondered with an update given by my  friend that he is using pmail server for SMTP mails.
Can any one suggest me in how many ways we can enable the SMTP server.. on windows..??
Thanks,
Noor.

Hi
if i use String provider = "imap"; then it shows the following error message..
javax.mail.MessagingException: Connection refused: connect
at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:479)
at javax.mail.Service.connect(Service.java:275)
at javax.mail.Service.connect(Service.java:156)
at javamail.AllPartsClient.main(AllPartsClient.java:39)
Caused by: java.net.ConnectException: Connection refused: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
at java.net.Socket.connect(Socket.java:507)
at java.net.Socket.connect(Socket.java:457)
at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:232)
at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:189)
at com.sun.mail.iap.Protocol.<init>(Protocol.java:84)
at com.sun.mail.imap.protocol.IMAPProtocol.<init>(IMAPProtocol.java:87)
at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:446)
... 3 more
pls any one give idea

Similar Messages

  • How many ways you can invoke JSP from OBPM

    Hi All,
    I just wanted to know how many ways we can invoke JSP Page from BPM.
    1. BPM Interactive component call
    2. ?.
    Thanks
    Sunil.

    When you are using a jsp, its for user interaction only. and in any case, you require interactive component call.
    this is the only way you can use a jsp in OBPM.
    However, in a bpm interactive activity - you can also choose external as implementation type.
    For this, you need to have your jsp source code reference added as an external resource in the project and the external resource is to be specified at configuration while setting implementation type.
    HTH
    Sharma

  • In how many ways we can load hierarchies to SAP BW and which transfer mthd

    Hi guru's,
    In how many ways we can load hierarchies to SAP BW and which transfer method is best.
    can anyone explain me with suitable example.
    Thanks,
    Madhu Raj.

    There are standard datasources available for hierarchies also. If the standard datasource does not satisfy your requirement you can always load a hierarchy using flat file. Refer to the below link for the same
    http://help.sap.com/saphelp_nw04/helpdata/en/fa/e92637c2cbf357e10000009b38f936/frameset.htm

  • How many ways we can create an object?

    how many ways we can create an object?

    rcnraju wrote:
    how many ways we can create an object?Why does it matter?
    add: clazz.newInstance();
    add: clazz.getConstructor(parameterTypes).newInstance(parameterValues);
    add: Unsafe.allocateInstane(Class clazz);
    add: any native method can create a new instance,

  • How many ways we can block the vendor

    hi friends,
                 How many ways we can block the vendor

    Hello
    Adding further,
    Within Accounts Payable, you can block a vendor account for posting. You have to block a vendor master record before you can mark it for deletion. You would also block a vendor that you use only as an alternative payment recipient, so that nobody can post to it by mistake.
    There are several fields in the vendor master record available to you. You can set the following blocks:
    Posting block for certain company codes or for all company codes
    Purchasing block for certain purchasing organizations or for all purchasing organizations. This is of course only if you have purchased and installed the purchasing application component.
    This topic describes how to block a vendor account and blocking an account for the accounting department only. A separate topic explains how you block a vendor from being paid.
    You can cancel a vendor account block at any time. To do this, simply remove the relevant indicator.
    Only block an account if there are no more open items in the account. If an account is blocked, you cannot clear any open items in it.
    Reg
    assign points if useful

  • In how many ways we can filter this select statement to improve performance

    Hi Experts,
    This select statement taking 2.5 hrs in production, Can we filter the where condition, to improve the performance.Plz suggest with coding ASAP.
    select * from dfkkop into  table t_dfkkop
               where   vtref   like 'EPC%'        and
                   ( ( augbd      =  '00000000'   and
                       xragl      = 'X' )
                               or
                     ( augbd between w_clrfr and  w_clrto )  )  and
                       augrd      ne '03'         and
                       zwage_type in s_wtype .
    Regards,
    Sam.

    if it really takes 2.5 hours, try the followingtry to run the SQL trace and
    select *
              into table t_dfkkop
              from dfkkop
              where vtref like 'EPC%'
              and augbd = '00000000' and xragl
             and augrd ne '03'
             and zwage_type in s_wtype .
    select *
              appending table t_dfkkop
              from dfkkop
              where vtref like 'EPC%'
             and augbd between w_clrfr and w_clrto 
             and augrd ne '03'
             and zwage_type in s_wtype .
    Do a DESCRIBE TABLE after the first SELECT and after the second,
    or run an SQL Trace.
    What is time needed for both parts, how many records come back, which index is used.
    Siegfried

  • How many Apple devices can connect to one account? If I get 2 iPads for my home can they get apps under the same account or different accounts?

    I am wanting to purchase an iPad for myself and kids but I am wondering if they need to be setup under a different Apple account or just one. What about my iPhone that is under that account? So how many devices can be linked to an account before it is maxed out?

    I'm not sure what the total limit is (or if there is one), but two iPads and one iPhone is no problem - you only need one account and you can have the same apps on all three devices if you want without any issues (I have an iPad, iPhone and iPod without problems). There was a thread a few weeks ago about a newspaper app (though it could have been a magazine), where the issue could only be downloaded to one device, but that is the only time I've heard about that limit.

  • In how many ways we can create new document and how to implements this ways?

    I found that we can create new document by 3 ways
    1)by using session object of application ,document list as follow
    InterfacePtr<IApplication> firstdoc(GetExecutionContextSession()->QueryApplication());
              InterfacePtr<IDocumentList> docList(firstdoc->QueryDocumentList());
      docList->NewDoc(25089,IDataBase::ProtectionLevel.kProtectSave, nil);
    but in this case i am not getting how to use newdoc method i.e which parameter we have to pass(not even clear from API reference )
    2)by using command
    InterfacePtr<IApplication> firstdoc(GetExecutionContextSession()->QueryApplication());
              InterfacePtr<IDocumentList> docList(firstdoc->QueryDocumentList());
      InterfacePtr<ICommand> new1(CmdUtils::CreateCommand(kNewDocCmdBoss));
              UIDList asd(docList);
              new1->SetItemList(asd);
              CmdUtils::ProcessCommand(new1);
    3)bu using some util or facade interface
    Utils<IDocumentCommands>()->New( . . .)
    in this case also  i am not geeting how to use new method 
    I try all this method but none of them working .i knew i am doing some mistake  in all these method so please correct me where i am wrong .
    Main problem is in the first parameter of newdoc method i.e what is class id how to use them 

    1. add to your project "SDKLayoutHelper.cpp", "SDKLayoutHelper.h"
    2. #include "SDKLayoutHelper.h"
    insert code:
    do{
             SDKLayoutHelper helper;
             UIDRef docRef = helper.CreateDocument();
             if (UIDRef::gNull == docRef)
                 break;
             helper.OpenLayoutWindow(docRef);
        }while(kFalse);
    Regards!

  • How many ways Checks can be reprinted, apart from FBZ5 and "Void and reprint" Options

    Hello All - Some times, when there is issue with Printer, Checks are not printed. In such a case, Users ask us how to print Checks.
    Some options I know are that (1) Checks can be reprinted through T Code - FBZ5 and
    (2) if Users are Ok with voiding Checks and use next available Check numbers, We use the option in the Variant - "Void and reprint" Option.
          Some Users are not happy with this Solution as they do not want to waste Checks.
    I am aware of only these 2 options. Can you please suggest me other alternatives we have to reprint Checks. Your valuable inputs are very helpful to us in this regard.
    Thanks

    Hi Hoysala,
    Please use the the FBZ5 as per attached screenshot for reprint check.

  • How many ways we can create authorization for user groups in sap query reports

    Hi Gurus, I am getting a problem when I am assigning users to user group in sap query report .The users other than created in user groups are also able to add &change  the users .So please suggest me how to restrict users outside of the user group.
    Please send me if u have any suggestions and useful threads.
    Thank You,
    Suneel Kumar.

    I don't think it can be done. According to the link below 'Users who have authorization for the authorization object S_QUERY with both the values Change and Maintain, can access all queries of all user groups without being explicitly entered in each user group.'
    http://help.sap.com/saphelp_46c/helpdata/en/d2/cb3f89455611d189710000e8322d00/content.htm
    Although I think you can add code to your infoset and maybe restrict according to authority group, i.e.:
    Use AUTHORITY-CHECK to restrict access to the database based on user.
    Press F1 on AUTHORITY-CHECK to find out how to use it in the code

  • How many ways to use the SAP content server?

    I just find out that content servers can be helpful for our data archiving.
    Can people here list other exciting way to use content servers, e.g. KW/KM, etc.
    Thanks!

    Hi Ashley,
    Checkout:
    1) SAP Content Server: Talks about implementation consideration and constraints as well.
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/d3/489f40c18a2a54e10000000a1550b0/frameset.htm
    2) Advantages of the SAP Content Server
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/21/f36c0b389511d5992200508b6b8b11/content.htm
    Hope that helps.
    Ray

  • How many ways a catalog can be published?

    Hello,
    Can somebody tell me how to publishing catalogs and in how many ways that can be done?
    plz provide some links ..
    thanx
    vevaik

    Hi,
    I suppose you are speaking about a CCM catalog, aren't you?.
    In that case you can publish the catalog using the bsp administration interface of CCM, only you have to select the master or procurement catalog and push publish. (You could emule this from a standard module function call in ABAP)
    I hope this help
    BR

  • I would appreciate your help on how to configure a gmail in a way  it  ask  for the password  everytime I connect?. In the only way I can configure it  I have to include the pw when configuring the account  and  after that  it do not ask for pw

    I would appreciate your help on how to configure a gmail in a way  it  ask  for the password  everytime I connect?. In the only way I can configure it  I have to include the pw when configuring the account  and  after that  it do not ask for pw  so  everyone that shares my iPad can  oppen my mail  with  no pw  required.
    Thank

    The iPad is designed to be a single user device, and there is currently no way to password protect the Mail app - even removing the account password from Settings > Mail, Contacts, Calendars will just prevent new mail being downloaded, it won't hide those that have already been downloaded. There is this work-around for the app : https://discussions.apple.com/message/13127632#13127632 . Also there might be third-party email apps that feature password protecting.

  • How many Ways jar files from ear file on a jboss can be downloaded on clien

    Aoa
    How many Ways jar files from ear file on a jboss can be downloaded on client side
    like jnlp etc..
    Regards
    M Fazal Ur Rehman

    First, you need to be able to boot from the Recovery HD:
    Boot Using Command+R keys:
      1. Restart the computer.
      2. Immediately after the chime press and hold down the
          "COMMAND" and the "R" keys together.
      3. Release the keys when the Utilities Menu appears.
    Once at the Utilities Menu select Terminal from the Utilities menu in the screen's menubar. Now, you need to know where these new files are located. You move to any location using the 'cd' command such as cd /Users/user_name/Documents, then press RETURN. Replace user_name with your actual username. Next you need to do a directory listing to see if your files are in that location, Documents. Use ls -al to do a directory listing of the files and folders in Documents. If you find your new files there, then connect an external drive or flash drive. You will need to know the name you have assigned to this drive. It needs to be already formatted. Copy your files using cp /Documents/filename /Volumes/volname/filename. Replace volname and filename with those that apply. Press RETURN.
    Or take it to your local Apple Store and see if they can do the chore for you.

  • How many ways can i improve query performance?

    Hi All,
    can any body help me
    How many ways can i improve query performance in oracle ?
    Thanks,
    narasimha

    As many as you can think of them!!!

Maybe you are looking for

  • Air 3.1 Crash on Mac OSX Snow Leopard (10.6)

    Description Intermittent crashing occurs after the application is launched on Snow Leopard. The crash tends to occur 10 to 20 seconds after the application has launched. The crash has happened 100% of the times we've tested on our Snow leopard testin

  • Acrobat X plugin & browser hosting

    Hi, We are currently in the process of adjusting one of our plugins for Acrobat X (using the Acrobat X SDK, of course). The plugin is relevant only when Acrobat is hosted (opened through) in a browser (mainly IE & Safari), that is - A user clicks on

  • Dynamic Drop Down creation using simple data types

    Hi all, I have got a requirement in which i have to create an iView which is going to have 6 drop down values and with in that 1 value is going to have sub values which needs to get displayed in the similar drop down fashion. I have created a simple

  • PC Security at Home

    Hi guys. Just wanted to know what sort of security tools/software you all employ on your Home devices?  I'm thinking of drive encryption and also doing regular Macrium images every week on my single home PC (it's my self-built gaming rig and my go-to

  • Need help on burning music on CD.

    I need help I went through so many CDs trying to back up my music. Before my computer broke I could make CDs no problem. When I try to burn a CD it takes forever it just says at the top of itunes Writing "the song" and sits like that forever and even