Domino Mail Server on AIX integrate with Portal

Now My Mail Server is Domino Server.
It on AIX System.
I want integrate with SAP Portal.
But SAP Ticketverifier only work on Win System.
How Can I do?

You can integrate the portal with DMS/CMS by using the DMS connector or DMS repository manager. The DMS repository manager can be dowloaded from sap service marketplace.
Also take a look at:
http://help.sap.com/saphelp_erp2005/helpdata/en/da/e40d3dbd82fe2fe10000000a114084/frameset.htm
There are however some restriction regarding versions.
You could also try to set up a webdav repository manager.
Good luck
Regards
Rasmus
Please do not forget the reward points )

Similar Messages

  • Content Server 6.3 integrate with Portal 6.0 possible?

    Hi
    I have successfully installed Content Server 6.3 to store documents and attachments from R/3 4.6.  Now, I want to integrate Content Server with Enterprise Portal 6.0.  Does anyone know how to configure the portal so that the documents and uploads in EP will be transferred to Content Server instead of storing it on local?

    You can integrate the portal with DMS/CMS by using the DMS connector or DMS repository manager. The DMS repository manager can be dowloaded from sap service marketplace.
    Also take a look at:
    http://help.sap.com/saphelp_erp2005/helpdata/en/da/e40d3dbd82fe2fe10000000a114084/frameset.htm
    There are however some restriction regarding versions.
    You could also try to set up a webdav repository manager.
    Good luck
    Regards
    Rasmus
    Please do not forget the reward points )

  • JavaMail SMTP TLS attempt gives SSLHandshakeException on Domino mail server

    Javamail TLS smtp (port 25) delivery attempts results in SSLHandshakeException on Domino mail server.
    They are however successful on SendMail and Exchange servers.
    Privately signed certificates from all three had been added to the keystore.
    Thunderbird client is able to send TLS mail successfully through the Domino Server. Additionally the MD5 hash of the cert on IE prompt during Thunderbird delivery matches against the Domino's cert already in keystore.
    JavaMail's smtp debug hangs at :
    250 Ready to start TLS
    EHLO [client name]
    Appreciate any feedback..

    OK, I think I've found a clue.
    When 10.6 server was released, there was an Apple article to fix some log messages that were occurring. Here is an excerpt:
    *The Mail Server mail.log may contain encryption warnings after upgrading to Mac OS X Server v10.6.
    *For example, warnings such as these may appear in the mail.log:
    * warning: no entropy source specified with parameter tlsrandomsource
    * warning: encryption keys etc. may be predictable
    *For improved encryption in Mac OS X Server v10.6, and to avoid this issue, open Terminal and execute this *command:
    *sudo postconf -e tlsrandomsource=/dev/urandom
    I've found that if you comment out this line in main.cf:
    tlsrandomsource = /dev/urandom (at the very end of the file for me)
    then TLS will start up OK. It will display the warning messages in the apple article above, but it starts up and handles TLS !!
    Next step is to figure out what broke in the random source and fix the encryption warnings. Anyone want to take a stab at this?

  • Can google search B2C catalog details if CRM integrate with portal?

    hi, guru:
    One question:
    if CRM integrate with portal, it is possible that search engine(Google) can search catalog details, there is an OSS message and it seems that as long as they make the appropriate settings for web crawling and the page is static they can do that.
    However, do you know if a Search Engine would be able to find the B2C catalog information that is sitting within the Portal (as this is framed and I think B2C needs to be non framed to be found)?

    Hello Chen,
    Barring other issues you may have with (a) the OSS message that explains how to create the crawler indexes for catalog items and (b) the ability to display catalog in Portal, a solution is theoretically possible.
    <li>Give the [PCD (Portal Content Directory) URL navigation|http://help.sap.com/saphelp_nw04s/helpdata/en/2d/91e33edd37de63e10000000a11405a/frameset.htm] for the B2C catalog to the crawler generator. This should theoretically publish the carwler indexes with target to the portal PCD URL link for the particular catalog area or catalog item.
    *Gotchas to watch out for*:
    <li>Proxy, reverse proxy, firewall etc that may be used in the portal / non-portal scenario for external users. I can't give the details of how to solve such issues, but that would require a good consultant. So, plan to consider these in your project plan.
    My advise: first check this in non-portal environment to eliminate any issues around the crawler program itself.
    Easwar Ram
    http://www.parxlns.com

  • Mail Server: problem configuring dovecot with postifx and virtualhosts

    Hi all,
    I'm am struggling trying to configure a mail server. I have a dedicated server running archlinux.
    I want to setup a complete mail server, ie: web access (for that I installed roundcube) and being able to retrieve mails on any e-mail client.
    I followed this guide, from the documentation but I've read that courier-imap is a lot more resources hungry than dovecot. As I could not have it working using the documentation, I tought I would use dovecot. The problem is that I am not able to configure it.
    What I already have up and running: web server (nginx) with postfixadmin and roundcubemail, postfix, mysql.
    Now, I want to be able to send and receive mails using dovecot. Could you guide me a little in order to replace courier-imap with dovecot, starting from this documentation? I already have my databases configured, a vmail user, ssl certificates and postifx configured for virtualhosts. Seems that the only thing missing is imap + smts thrue TLS.
    Thanks for any help.
    Last edited by Rolinh (2011-08-17 10:40:19)

    The dovecot configuration files are very well commented with documentation and examples in /etc/dovecot/
    As for TLS and SMTP Auth, this is the relevant part of my main.cf for postfix:
    # TLS Settings
    smtpd_use_tls = yes
    smtpd_tls_key_file = /etc/postfix/wildcard.example.com.key
    smtpd_tls_cert_file = /etc/postfix/wildcard.example.com.crt
    smtpd_tls_CAfile = /etc/postfix/root.crt
    smtpd_tls_received_header = yes
    smtpd_tls_security_level = may
    smtpd_tls_loglevel = 1
    smtpd_tls_session_cache_timeout = 3600s
    smtp_use_tls = yes
    smtp_tls_security_level = may
    smtp_tls_note_starttls_offer = yes
    tls_random_source = dev:/dev/urandom
    # Enable SMTP authentication support
    broken_sasl_auth_clients = yes
    smtp_sasl_auth_enable = no
    smtpd_sasl_auth_enable = yes
    smtpd_sasl_type = dovecot
    smtpd_sasl_local_domain = $mydomain
    smtpd_sasl_path = /srv/postfix/private/auth
    smtpd_sasl_security_options = noanonymous
    smtpd_sasl_authenticated_header = yes
    smtpd_sender_restrictions = permit_sasl_authenticated
    Last edited by fukawi2 (2011-08-17 12:33:15)

  • ICloud mail server - Unable To Send With Apple Mail client

    OS X 10.10.2
    Mail v 8.2
    iCloud mail
    I am still able to receive messages but suddenly unable to send. Messages stay stuck in Outbox.
    Mail Connection Doctor reports no problems:
    If I setup MS Outlook for Mac 2011 with this iCloud account, I am able to send and receive like a champ.
    Once it starts working, is there a way to change the outgoing mail server to use SSL, i.e., turn SSL to "ON" ?

    Yes, I did. It doesn't show up in the logs because, I'm unable to send a message - it goes to the outbox immediately. And this led me to the conclusion below.
    And by the way, I did get in touch with Apple Support who went through a number of troubleshooting scripts (including trying to use GMail's mail servers) and ultimately had me reinstall OS X from scratch. None of this worked.
    Now this problem of being unable to send mail via my iCloud account, from the Apple Mail client, started only around the end of Feb. What I finally figured was that iCloud mail was using random ports on my machine to invoke its SMTP port. Everytime I would disable the firewall on my router completely, iCloud mail was able to send just fine. Recall that incoming was (and still is) working fine. Anyway, I installed wireshark to ID the ports that were being used when the firewall was down. I set up triggers on my router to open these up, turned on the firewall, but it just isn't working. I will have to play around with wireshark and see if I can figure out what ports need to be opened. Unless you or someone else knows. If I figure it out, I will post it here. Mind you, that I need to figure out not only the source ports that need to access port 587 but also what the real target port is (because I don't think it is just 587 as Apple claims).
    By the by, when I asked the Apple Technician (some guy who I was transferred to after 3 other people - the one who asked me to reinstall Yosemite) if there was a way to change the outgoing mail server to use SSL, i.e., turn SSL to "ON", he said no there wasn't and why would one need to secure the traffic to Apple's SMTP server anyway? Seriously?

  • Http server start-up error with portal

    When attempting to start the http server I receive the following error:
    [Tue Feb 12 16:14:20 2002] [crit] (10038)(FormatMessage failed with code 317): Parent: WSADuplicateSocket failed for socket 248.
    [Tue Feb 12 16:14:20 2002] [error] (2)No such file or directory: master_main: create child process failed. Exiting.
    Is there a fix for this? I saw a previous discussion forum post recommending a patch install, but I don't have a MetaLink account and thus can't download the patches. Anyone have a solution to this error other than the patch?

    Dougt
    Thanks for the update. Sorry that the news was not better. But do not give up.
    After I saw your message, I did some Google searching. The following is some of what I found
    http://answers.microsoft.com/en-us/windows/forum/windows_7-files/windows-installer-error-1 325-documents-is-not-a/d70411d0-017d-41f0-b5b4-0861b6ca9955
    I have some further suggestions which you might consider. If you have professional help, then best let it handle the overall situation, especially if it is going to take you into the Registry where you might not feel comfortable.
    My suggestion would be to uninstall Premiere Elements 7, do a run through with ccleaner (regular clearner and registry cleaner parts) and then reinstall Premiere Elements 7. Many have used ccleaner with pros and no cons. In the registry cleaning part, there is a step for you to backup the registry in a file saved to Documents or wherever you want on the computer hard drive.
    But, go with what you feel comfortable doing. If you have Premiere Elements 7 projects in the works and can get into Premiere Elements, you may want to Project Archive them for safe keeping.during this time whether you run the ccleaner or not.
    We will be watching for your progress.
    Thank you.
    ATR

  • Calendar Integration with Portal Server 6.0

    Hi,
    I have installed Calender Server 5.1.1 with portal server6.0..When click the Launch Calendar channel link in my portal page,it takes me to login page for Calendar Server on.I expected it to take me to the calendar page .I donot want to re-authenticate every time i launch a calendar.Any ideas??
    Thanks,
    Ramnath

    Quickest path to success...
    stop the cal server
    cd to Install Path/cal/bin/config
    edit ics.conf
    change "service.htttp.ipsecurity" from yes to no
    save you changes
    restart the server
    hope this helps

  • 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

  • Mail server setup in this environment

    here's the environment:
    - od master on one xserve running 10.5.x, upgraded from 10.4.11
    - od replica on second xserve running 10.5.x, upgraded from 10.4.11
    - mail server on new xserve with fresh install of 10.5.x
    is it enough to have the mail server in this arrangement configured as an od client, just bound to od, or does it also need to be a replica to provide authentication information and for mail to work properly?
    with it just bound to od -- whether this has anything to do with it, i'm not sure -- mail was working but not quite as smoothly as hoped. new and existing users could login to webmail, i could enable mail services for the users on the od master or via wgm on the mail server, but i still got some errors in the logs about accounts not having sacl entries for mail, even though they do.
    what do you think?

    thanks. i'll try that. wasn't sure if it was strictly necessary, because most functions seemed to work with the server bound as a client.

  • Project systems integration with portal (EP)

    Dear all,
    I have to integrate the projects systems module with Portal.(EP)
    In portal transactional I views can be used to create projects which can be store in the R/3.
    Now the issue is to create projects with out using Transactional I views. This should be a simple entry through portal, where in the user keys in the key fields and there by the project is created and scheduled.
    For this I have tried with using business packages given by SAP to integrate with portal.
    Now the issue is I can display the projects that are created in R/3 through portal and display the necessary fileds required for viewing (I views). Now the main problem is to create the project using these business packages so that the same get updated in the R/3.
    But business packages do not have the option of creating the project. I am using the business packages for projects 50.3.1
    Has any body come across this type of issue which has to be integrated with portal and subsequent creation of projects through portal
    If any body has done this in any other way please kindly share on this.
    Experts please throw some pointers on this.
    Regards.
    Vara Prasad

    Hi Aman,
    You may try creating transaction iViews of the desired PS Transaction.
    For more help you can take help of your Portal Administrator.
    Else, see if this link may help:
    http://help.sap.com/Business_Packages/EN/06/3ED93BE53BCD29E10000000A114084/frameset.htm
    Regards,
    Vivek Pandey

  • Setting PRIMARY outgoing Mail Server

    i have nine emails from my primary domain, one from a secondary domain, a gmail account and a me.com account.
    i am having problems with email (cannot connect to domain name) and i am trying to verify that my outgoing server settings are correct. can someone help me here. it appears that i have to get into an /individual/ email account and at which point i have an option to select SMTP server?! this then pulls up the /first/ image which shows a primary server.
    How do i change this primary account?! Do i "simply" enter all new information for each and every email account and change the primary outgoing server for each and every email address?!
    How do i /set/ the primary server for an /individual/ account? Do i have to enter a new outgoing primary server for each and every email account/
    Do i have to enter a USER NAME that is the same as my email account name each time i enter an outgoing server?
    What is the purpose of the ON and OFF buttons for the "Other SMTP Server" accounts listed?
    Do i keep the GMAIL outgoing server ON? or "on" only for the GMAIL account?
    I am uber confused here and am hoping for some clarification...
    THANKS.

    Well, first, you only need one copy of each server. cwmx.com is AT&T's SMTP server, and will only work when you are on cellular data; it will not work over WiFi. So start by deleting all cwmx.com servers except the first. cwmx.com should not have a user ID or password.
    When you send mail the iPhone first tries to send using the primary SMTP server. If that fails or times out, it tries the secondary servers in the order listed. cwmx.com is a last resort server; most people don't need it at all; it is only needed if your ISP does not relay mail from outside of its network.
    For each mail server that you interact with the Primary SMTP server should be the one for that server. The Primary server should never be cwmx.com. So for the universaljointdesign.com account the primary server should be mail.universaljointdesign.com, and you should enter your user ID and password. The secondary should be cwmx.com, and you should turn off all of the other SMTP servers for that account. Further, if mail.universaljointdesign.com does not require that you be within the site firewall when sending you don't even need cwmx.com enabled.
    For the gmail account the SMTP server should be smtp.gmail.com, and that's the only one that needs to be on. You will need to enter your full gmail address as ID and your gmail password. If you have 2 factor authentication enabled for gmail you will have to generate a single use password.

  • ESO Integration With Portal

    Hi Experts,
    Can ESO integrate with Portal? Can user access ESO directly in portal sceen? Many thanks.

    Single Sign on can be used from portal to ESO for login.
    This is how it works:
    1. Login to Portal
    2. Click on E-sourcing link from Employee Self Service Tab
    3. ESO workbench opens up in new window.
    Hope this helps.
    Good Luck

  • TS3276 cannot receive or send mail, server off line "ssl off" how do I turn ssl on?

    Cannot receive or send mail.  Server off line  "ssl off " . how do I turn on ssl?

    Hello there, gillaf.
    To turn adjust your SSL settings the following Knowledge Base article will be of assistance:
    Mac OS X Mail: About Secure Email Communications (SSL)
    http://support.apple.com/kb/TA25586
    Setting up Mail for SSL
    Important: These steps require Mac OS X 10.1.3 or later.
    1. Open the Mail application.
    2. Choose Preferences from the Mail application menu.
    3. Click Accounts.
    4. Select an account name, and click Edit.
    5. Click the Account Options tab.
    6. Click the Use SSL checkbox to enable this option.
    Selecting the checkbox will auto-populate the default port numbers. If there is a non-default port number already present, it will not change. You can manually enter a number if your ISP gave you a different port number. Be sure you enter the correct port for your mail server here when selecting SSL, even if it auto-populates a default number.
    Note: If SSL is accidentally set up when it should not be, or is configured using the incorrect port for your mail server, an alert box with a message similar to this may appear:
    "Fetch Error: Couldn't connect to a POP host name mail.apple.com."
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • TS3899 What out going mail server should I use?

    What out going mail server should I use with 1, 3G , 2, using wifi at home with telecom, 3 using wifi at work using call plus ( slingshot)

    Ask the email service provider.
    No one here can tell you as you've provided no information.

Maybe you are looking for

  • How to export photos from one library to other?

    I have two Aperture's libraries. The first one has my full albums, since 2001, and runs on my 2Tb external HD. The other one, has only the current year's photos, and is storaged on my Macbook Pro local disk. So I want to export ou migrate all my 2011

  • Logical Name and Physical Name of OWB Objects?

    Hi, I am using OWB 10G R1. Version: 10.0.1.0.4 I would like to know, is there any table/script to get list of physical name and logical name of OWB objects (mapping / process flow). Any help would be appreciated greatly. Thank you, Regards, Gowtham S

  • ITunes 10.7 crashing

    My iTunes is crashing every time I try to open it. I have thousands of dollars of music and movies in there. PLEASE HELP!!!! Process:         iTunes [1033] Path:            /Applications/iTunes.app/Contents/MacOS/iTunes Identifier:      com.apple.iTu

  • How do I combine two or more CDs into one album?

    How do I combine multiple CDs, like box sets, into one album in iTunes?

  • ISight not opening

    Hi Will iSight not open if there's no camerea attatched? when I click on it it seems to open but there's nothing on screen?