How to confiure sendmail in sloaris 10

pls explain me how to setup sendmail .in my concern we 30 windows work station
one solaris 10 x86 server i want to configure sendmail

Configure sendmail.cf file and use the command sendmail.

Similar Messages

  • How to configure sendmail to use multiple LDAP servers ?

    Hi everybody!
    I have a sendmail running on Solaris 10 and a LDAP server(192.168.1.9) also running Solaris 10 OS. I have configured the sendmail the following way:
    bash-3.00# ldapclient list
    NS_LDAP_FILE_VERSION= 2.0
    NS_LDAP_BINDDN= cn=proxyagent,ou=profile,dc=email,dc=reso,dc=ru
    NS_LDAP_BINDPASSWD= {NS1}*********************
    NS_LDAP_SERVERS= 192.168.1.9
    NS_LDAP_SEARCH_BASEDN= dc=email,dc=domain,dc=ru
    NS_LDAP_AUTH= simple
    NS_LDAP_SEARCH_REF= FALSE
    NS_LDAP_SEARCH_SCOPE= sub
    NS_LDAP_SEARCH_TIME= 30
    NS_LDAP_CACHETTL= 43200
    NS_LDAP_PROFILE= default
    NS_LDAP_CREDENTIAL_LEVEL= proxy
    NS_LDAP_BIND_TIME= 10
    I also have another LDAP server (IP 192.168.1.10). It is configured as a replicant of the 192.168.1.9 LDAP server.
    The question is how can i configure sendmail to use both LDAP servers ?
    The man pages explain how to configure ldapclient to use ONE server and what if want to use two or more? All the settings and the profiles the same.
    Thanks in advance =))

    Hi!
    To add LDAP servers to the Solaris ldapclient, you might use the ldapclient command:
    ldapclient manual -v -a defaultServerList="servera.yourdomain.com serverb.yourdomain.com"
    But this is only failover, AFAIK the Solaris ldapclient does not perform loadbalancing by itself.
    But I am not sure about your sendmail programm. Normally, sendmail has its own configuration
    and can be configured to use LDAP e.g. for aliases etc.
    Regards!
    Rainer

  • How to configure sendmail to act as a mail gateway and relay mails???

    I installed the Solaris (Intel) v.8 (10/01) in my external network. Now, I want to configure it as a mail server and as a mail gateway between my internal mail host and itself.
    I think I have read all documentation which comes in Answerbook2 about mail gateway.
    I added some aliases to the aliases file in /etc/mail and executed the newaliases command.
    The aliases pointed to my mail host which is in my internal network.
    I included the IP address and the name of the mail host in the /etc/hosts
    I can telnet the internal mail host and I can connect to it and verify the internal account thru:
    mconnect "mail host"
    vrfy "account"
    But when I do
    /usr/lib/sendmail -v "alias" < /dev/null
    it translates the alias to the account in the internal mail host but it returns to me
    "account" ... User Unknow.
    When I try to use the mail server from one client in my internal network (I configure my mail client to use as Outgoing server the server in the external network) to send mails I receive the error:
    550 5.7.1 Relaying denied. IP name lookup failed
    I create a file called "access" and create the binary called "access.db" (makemap hash access < access), but it doesn�t work.
    I think that maybe the sendmail.cf doesn�t recognize the access file but I�m not sure. I have worked with other "sendmail" version under others OS (RedHat Linux) but the files are quite differents.
    Would you please help me?

    I found the way to do it and this is the procedure
    How to implement the mail gateway on Solaris 5.8
    You have to make changes in 3 different places
    1.- Files in /etc/mail (sendmail files)
    2.- /etc/hosts file
    3.- DNS files and /etc/nsswitch.conf file
    1.- Files in /etc/mail
    1.1.- Backup your existent sendmail.cf file and copy the main.cf file as
    sendmail.cf (cp /etc/mail/main.cf /etc/mail/sendmail.cf)
    1.2.- If you want to accept mail for entire domain in your mail gateway (your mail
    server is an MX record in the DNS files), you�ll have to modify the sendmail.cf
    file editing the line Dj as Dj$m or if you want to accept just mail for your specific
    server you must put Dj$w.$m (be carefull to avoid spaces).
    1.3.- Change in the sendmail.cf file the DM parameter adding ddn. It should
    looks like DMddn (no spaces anywhere).
    1.4.- Insert a line for the Dm parameter, which should include your domain
    (ex.:Dmyourdomain.com, be care with spaces). If you have defined multiple
    domains, add a line with Cm and put the domains one after other separated by
    spaces. You have to put a space between Cm and the first domain
    1.5.- Add the following rule in the ruleset, don�t use spaces, use tabs as
    separator:
    R$*<@$*.$+>$* $#ddn $@ $2.$3 $:$1<@$2.$3>$4 [email protected]
    1.6.- If you find the following rule in the ruleset you should comment out it.
    R$*<@$*.$+>$* $#$M $@$R $:$1<@$2.$3>$4 [email protected]
    1.7.- If your host is receiving mail under different names for "local" delivery,
    often you need to define those hosts in a "Cw" line and put the names one after
    other separated by spaces. You have to put a space between Cw and the first
    name.
    1.8.- If you want to relay mails to different domains or subnets you can include
    them into the file relay-domains. Each record in this file is a domain name (like
    sun.com) or a subnet (like 192.0.0., be carefull with last dot).
    1.9.- To test your sendmail service you have to stop and start it
    (/etc/init.d/sendmail stop; /etc/init.d/sendmail start) and you can do the following:
    1.9.1- To get basic debug information type:
    /usr/lib/sendmail -bt -d0.1 < /dev/null
    1.9.2- To test the conection:
    mconnect "mail server"
    vrfy "any alias"
    1.9.3- To test the alias you inserted into aliases file (remember run newaliases
    command after insert them).
    /usr/lib/sendmail -v "any alias" </dev/null
    2.- The /etc/hosts file:
    2.1.- You must include in this file the IP address server, its nickname
    (servername), its extended nickname (servername.domain), the word
    "mailhost", the word "mailhost" and your domain (mailhost.domain) and the
    word loghost.
    2.2.- If you wish you can include all the servers that you want in the file. You
    should do this is to avoid the use of DNS service translation.
    2.3.- Check the DNS service thru nslookup servername (ex. Nslookup
    sun.com), then test nslookup to your mail gateway
    3.- DNS files and /etc/nsswitch.conf file
    3.1.- Include a MX record for your mail gateway as the mail host for the entire
    domain and verify that each record into the zone files include the MX record.
    These files are in your DNS server (nameserver).
    3.2.- Check your /etc/nsswitch.conf file. The record host must include files and
    dns. It must look like
    hosts: files dns

  • How to configure sendmail on linux

    Hi,
    I have to configure sendmail for workflow notifications. I have just done necessary changes in sendmail.mc and generated sendmail.cf. But still i am not able to send mail. Could any one please tell me how sendmail sends mail.
    The scenario is:
    We aer hosting our domain at smtp.gmail.com. So all the emails have domain @xyz.com. How can i configure sendmail so that i can send mails from my linux server to [email protected]
    Do i need to generate any certificates, Is this for free. How do i generate these.
    Please help
    Regards
    Taher
    Edited by: user11970143 on Jun 7, 2010 5:06 AM

    What do you mean by having done the necessary sendmail changes?
    From what I understand, your question cannot be easily answered without knowing your security or Firewall DMZ requirements. You may have to define a default mail relay gateway on your sendmail server to relay all outgoing messages to a specific relay mail server for forwarding to the Internet.
    You may also have to define approprate mail exchange MX records in your DNS.
    Perhaps you can use Sendmail's personal mail forwarding. Sendmail allows individual users to define their own forwarding. The user defines personal forwarding in the .forward file in the home directory. Sendmail checks for this file after using the aliases file and before making final delivery to the user. If the .forward file exists, sendmail delivers the mail as directed by that file. For example, say that user oracle has a .forward file in the home directory that contains [email protected]

  • How to configure Sendmail mail relay with authentication

    Hi,
           How to configure send mail relay.  Client gave us smtp host,port, username and password. We have a couple of server. If we configure the relay in any one of the server other servers able send mails using relay server. Please help me on this? 

    .Create an IT Resource of Type Mail Server. Give Name as "Email Server.Now populate the values for all the parameter for example Server,username,password and authentication type.
    .Go to System Configuration and in Email Server property value give the name of IT resource you created in step1 so the name will be "Email Server".
    http://forums.oracle.com/forums/messageview.jspa?messageID=3867506&stqc=true

  • How to configure sendmail on 10.5.8 Mac OS X ?

    Hi
    I like to configure sendmail service to work for me in conjunction with XAMPP for web development.
    I only want to configure for outgoing mail, and no incoming mail.
    I get the following errors:
    Jul 9 05:14:03 einstein postfix/pickup[28344]: 9393E63A1A6: uid=-2 from=<nobody>
    Jul 9 05:14:03 einstein postfix/cleanup[28346]: 9393E63A1A6: message-id=<[email protected]>
    Jul 9 05:14:03 einstein postfix/qmgr[28345]: 9393E63A1A6: from=<[email protected]>, size=712, nrcpt=1 (queue active)
    Jul 9 05:14:03 einstein postfix/local[28356]: 9393E63A1A6: to=<[email protected]>, orig_to=<z>, relay=local, delay=0.03, delays=
    0.01/0.01/0/0.01, dsn=5.1.1, status=bounced (unknown user: "z")
    Jul 9 05:14:03 einstein postfix/cleanup[28346]: 9A17F63A1A8: message-id=<[email protected]>
    Jul 9 05:14:03 einstein postfix/bounce[28357]: 9393E63A1A6: sender non-delivery notification: 9A17F63A1A8
    Jul 9 05:14:03 einstein postfix/qmgr[28345]: 9A17F63A1A8: from=, size=2427, nrcpt=1 (queue active)
    Jul 9 05:14:03 einstein postfix/qmgr[28345]: 9393E63A1A6: removed
    Jul 9 05:14:03 einstein postfix/local[28356]: 9A17F63A1A8: to=<[email protected]>, relay=local, delay=0.06, delays=0/0/0/0.
    05, dsn=2.0.0, status=sent (delivered to mailbox)
    Jul 9 05:14:03 einstein postfix/local[28356]: warning: service not found: biff/udp
    Jul 9 05:14:03 einstein postfix/qmgr[28345]: 9A17F63A1A8: removed
    Jul 9 05:14:04 einstein postfix/smtp[28353]: 755FE63A1A4: to=<[email protected]>, relay=gmail-smtp-in.l.google.com[74.125.127.27]:25, delay=3.3, delays=0.13/0.03/2.4/0.7, dsn=2.0.0, status=sent (250 2.0.0 OK 1278677644 l6si1998561wfa.144)
    Jul 9 05:14:04 einstein postfix/qmgr[28345]: 755FE63A1A4: removed
    Jul 9 05:14:31 einstein postfix/smtp[28348]: connect to example.com[192.0.32.10]: Operation timed out (port 25)
    Jul 9 05:14:31 einstein postfix/smtp[28349]: connect to example.com[192.0.32.10]: Operation timed out (port 25)
    Jul 9 05:14:31 einstein postfix/smtp[28348]: 4029B639F8D: to=<[email protected]>, relay=none, delay=2163, delays=2133/0.07/3
    0/0, dsn=4.4.1, status=deferred (connect to example.com[192.0.32.10]: Operation timed out)
    Are there simple steps to configure sendmail ?
    Any help is appreciated.
    Thank you
    Sincerely

    I don't have any idea, since all that's used here is postfix. For development stuff, peruse or post to the developer forums under OS X Technologies or to the appropriate Server Products forum.

  • How to Confiure Route Node to do HTTP Post?

    Hi All,
    I am trying to create a messge flow that could do HTTP POST.
    I have a business service that can do HTTP POST.
    In the Messge flow of the proxy service, I created Route node.
    With in the route node, I have created an Assign request action to assign to content to $body variable.
    The problem here is content of the body variable should have <soap:Body> as the top level element otherwise it throws an exception.
    I don't want to use service callout because service call outs are synchornous. How can we solve this issue with route node?
    Thanks in adavance for the response.

    In the assign to $body xquery either use:
    <soap-env:Body>
    {$payload}
    </soap-env:Body>
    or
    <soap-env:Body>
    <ns1:myOperation>
    {$payload}
    </ns1:myOperation>
    </soap-env:Body>
    where soap-env is a predefined prefix and you have defined ns1.
    Also if you your services mix soap1.1 and soap1.2 you can get a similar error.
    For example if your proxy is soap1.1 and you assign a soap1.2 body in the main pipeline (and vice-versa) then you will get that error. In that case you would need to create the soap1.2 body inside the route node. Otherwise you can do it anywhere in the pipeline.

  • How to Confiure alert notification mail

    Hi experts,
    Could you please help. We are trying to send an email as Alert  to suppliers for all Backorder PO.
    1.What settings needed to be done to achieve it.
    2.What procedure/config settings needed to define the Message channel?
    3.How/where the message content can be created?
    Thanks in advance.
    Regards
    Vinoth

    Hi,
    Below document may help you.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8009bba5-7806-2d10-0b80-fa26d8bcb07c?quicklink=index&overridelayout=true
    Regards,
    Nagaraju

  • How to configure sendmail for outgoing only?

    I have another custom application running on port 25, listening to the email traffic there. However, I still need to send mail from the localhost to the internet. I need a way to configure sendmail such that it will send mail but either not listen at all, or listen on a different port. I have tried fiddling with the sendmail.cf file, but without success.
    Please forward replys to [email protected]

    I'm not sure you can do it by fiddling with the cf file as I'm not sure the cf has the features you need turned on.
    You better off tweaking an mc file and generating a whole new cf.
    The bit you need in the mc file is
    DAEMON_OPTIONS(``Port=smtp, Addr=127.0.0.1, Name=MTA'')dnl
    FEATURE(`no_default_msa')dnl
    An alternative that I prefer is to create the file /etc/default/sendmail containing
    MODE="-bd -ODaemonPortOptions=Addr=127.0.0.1"

  • How to confiure the fields displayed in F4 help hit list?

    Hi Gurus,
    I got a strange issue.
    Standard F4 help in PA20 displays a hit list of employees along with the details like name of the employee, his personnel number, his date of Birth and other details.
    Now the customer requirement is as follows - The birth date being a confidential information should not be displyed to users. Therefore, there is a customizing request to hide this Date of Birth Field in the hit list given by F4 Help.
    Can anyone suggest me where  (under which node) exactlyconfigure the same in IMG?
    Thanks in advance.
    Amit Linge
    SAP HCM Consultant

    Hi Donnie,
    Thanks for your guidance.
    It helped me configuring the F4 Search Help. The solution is proposed to the client.
    thanks once again.
    Amit Linge

  • How to confiure Firefox to not refer hosts file

    I'm using firefox on Win-7
    I have host file entries that I do not want to alter. Can't even alter the name of host file temporarily.
    But then I don't want firefox to refer to the host file at all. I need it to go to the DNS directly.
    Is there a way to make firefox skip the hostfile check & go to DNS or at the least lookup another equivalent file instead of hosts file
    Please advise

    Firefox simply passes the DNS request to the DNS Client service (Windows).
    It is the DNS client that checks for an entry in the hosts file when it receives a DNS request, not Firefox.

  • How to make Management of row level restrictions easy for webi reports?

    Hi all
    Our BO Product version is 12.3.0.601 (BO 3.1)
    We are applying row level security for webi reports at universe level...
    Since  Universes are more in Number we have to create same restrictions and apply it to the users lets take a restrictions on region....which is common across all universes.
    So the problem lies with the management of restrictions created at universe level.
    Can we have a setup in where we can centralized the restirctions at a place so that management would be easy ......???
    Shall we have to import the roles(restrictions) from R/3 or BW or Database level...?
    Then how we will restrict our report (webi) to a region?????
    So basically webi reports should run with the restrictions lets say region....How we will achieve this?/
    Thanks and Regards
    Ritu Raj

    Hi,
    what is your Datasource?
    If its SAP BW i would highly recommend you use the SAP Authentication in your  BOE XI 3.1 So the users log into BOE with their SAP Username and Password and than the Data restriction of your BW takes place when the users run their Reports.
    Informations on how to confiure the SAP Authentication you will find in the installation Guide of the SAP ITK.
    Regards
    -Seb.

  • Sendmail setup on solaris 7

    All
    I have never setup sendmail. Can anyone help me how to setup sendmail. I have read sun doc on sendmail but i was confused by reading them.
    Anybody have done is before??
    Your help is really appreciated
    Thanks
    Pranozzol

    Hi Terry,
    Try to look in to this URL and let me know the result.
    http://www.bolthole.com/solaris/LDAP.html
    Regards,
    Senthilkumar

  • Sendmail + IMAP on Solaris 11

    I need to enable IMAP to be able to connect remotely (from within the same network but a different computer) to my local Sendmail mailboxes on my Solaris 11 server. I haven't found any articles about that for Solaris 11, but I have found one for Solaris 10 (Oracle Apps Technology: How to start sendmail(SMTP) and IMAP on Solaris 10). What would be different in my case?
    Thank you in advance for your help,
    Dušan

    I tried to follow the steps mentioned in the article, but it didn't work. The URL address ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/imap-2006e-sol10-sparc-local.gz is unavailable.
    I tried to look up the IMAP package in the repository (Oracle Solaris 11 Package Repository). But when I typed "imap" into the search text box and hit the button, it showed me only the following packages, none of which seems to be what I am looking for.
    library/java/[email protected],5.11-0.151.0.1:20101105T055508Z
    Install
    Manifest
    network/chat/[email protected],5.11-0.175.1.0.0.24.0:20120904T172841Z
    Install
    Manifest
    runtime/java/[email protected],5.11-0.151.0.1:20101105T060340Z
    Install
    Manifest
    runtime/[email protected],5.11-0.175.1.0.0.24.0:20120904T173822Z
    Install
    Manifest
    service/security/[email protected],5.11-0.175.0.0.0.0.0:20110927T113739Z
    Install
    Manifest
    system/management/[email protected],5.11-0.175.1.0.0.23.0:20120820T162241Z
    Install
    Manifest
    How do I find and install the correct IMAP package for Solaris version 11?
    Thanks in advance for your help,
    Dusan

  • A question about sendmail on solaris(10 and 11)

    I have a private network for working,all machines are linux or unix.
    I have one smtp server running postfix,wich force all connection
    to make tls(escuse my english relly bad).
    On hpux 11.31 i use this .mc
    divert(0)dnl
    VERSIONID(`$Id: generic-hpux10.mc,v 8.13 2001/05/29 17:29:52 ca Exp $')
    OSTYPE(hpux11)dnl
    DOMAIN(generic)dnl
    define(`_X400_UUCP_')dnl
    define(`_MASQUERADE_ENVELOPE_')dnl
    define(`MASQUERADE_NAME')dnl
    define(`confTRY_NULL_MX_LIST',`T')dnl
    define(`LUSER_RELAY',`name_of_luser_relay')dnl
    define(`DATABASE_MAP_TYPE',`dbm')dnl
    define(`_CLASS_U_')dnl
    define(`LOCAL_RELAY')dnl
    define(`MAIL_HUB')dnl
    TRUST_AUTH_MECH(`GSSAPI DIGEST-MD5')dnl
    FEATURE(always_add_domain)dnl
    MAILER(local)dnl
    MAILER(smtp)dnl
    MAILER(openmail)dnl
    MAILER(uucp)dnl
    define(`SMART_HOST', `posta.domain.com')
    define(`confCACERT_PATH', `/etc/mail/certs')dnl
    define(`confCACERT', `/etc/mail/certs/domain.com.crt')dnl
    define(`confSERVER_CERT', `/etc/mail/certs/hpux2.domain.com.crt')dnl
    define(`confSERVER_KEY', `/etc/mail/certs/hpux2.domain.com.key')dnl
    define(`confCLIENT_CERT', `/etc/mail/certs/hpux2.domain.com.crt')dnl
    define(`confCLIENT_KEY', `/etc/mail/certs/hpux2.domain.com.key')dnl
    define(`confRAND_FILE',`egd:/dev/urandom')dnl
    D{tls_version}TLSv1
    O UseTLS=True
    On Solaris this
    divert(0)dnl
    VERSIONID(`sendmail.mc (Sun)')
    OSTYPE(`solaris11')dnl
    DOMAIN(`solaris-generic')dnl
    define(`confFALLBACK_SMARTHOST', `mailhost$?m.$m$.')dnl
    FEATURE(genericstable)dnl
    FEATURE(mailertable)dnl
    FEATURE(domaintable)dnl
    FEATURE(allmasquerade)dnl
    FEATURE(promiscuous_relay)dnl
    FEATURE(accept_unresolvable_domains)dnl
    FEATURE(accept_unqualified_senders)dnl
    FEATURE(no_default_msa)
    DOMAIN(`posta.domain.local')dnl
    MAILER(`local')dnl
    MAILER(`smtp')dnl
    define(`confSMTP_LOGIN_MSG', `$j Sendmail $b')
    define(`SMART_HOST', `posta.domain.com')
    define(`confCACERT_PATH', `/etc/mail/certs')dnl
    define(`confCACERT', `/etc/mail/certs/domain.local.crt')dnl
    define(`confSERVER_CERT', `/etc/mail/certs/solaris.domaincrt')dnl
    define(`confSERVER_KEY', `/etc/mail/certs/solaris.domain.coml.key')dnl
    define(`confCLIENT_CERT', `/etc/mail/certs/solaris.domain.com.crt')dnl
    define(`confCLIENT_KEY', `/etc/mail/certs/solaris.domain.com.key')dnl
    define(`confRAND_FILE',`egd:/dev/urandom')dnl
    D{tls_version}TLSv1
    On hpux all works fine,send mail,on solaris give me those errors
    [192.168.3.252], dsn=5.0.0, stat=Service unavailable
    Diagnostic-Code: SMTP; 530 5.7.0 Must issue a STARTTLS command first
    I try to set UseTLS=True even on solaris but give me error and sendmail don't start
    How to set sendmail to use tls?
    thank to who help me

    Solution found using this mc
    divert(0)dnl
    VERSIONID(`sendmail.mc (Sun)')
    OSTYPE(`solaris11')dnl
    DOMAIN(`solaris-generic')dnl
    define(`confCACERT_PATH', `/etc/mail/certs')dnl
    define(`confCACERT', `/etc/mail/certs/domain.com.crt')dnl
    define(`confSERVER_CERT', `/etc/mail/certs/solaris11.domain.com.crt')dnl
    define(`confSERVER_KEY', `/etc/mail/certs/solaris11.domain.com.key')dnl
    define(`confCLIENT_CERT', `/etc/mail/certs/solaris11.domain.com.crt')dnl
    define(`confCLIENT_KEY', `/etc/mail/certs/solaris11.domain.com.key')dnl
    define(`confRAND_FILE',`egd:/dev/urandom')dnl
    define(`_X400_UUCP_')dnl
    define(`_MASQUERADE_ENVELOPE_')dnl
    define(`MASQUERADE_NAME')dnl
    define(`confTRY_NULL_MX_LIST',`T')dnl
    define(`LUSER_RELAY',`name_of_luser_relay')dnl
    define(`DATABASE_MAP_TYPE',`dbm')dnl
    define(`_CLASS_U_')dnl
    define(`LOCAL_RELAY')dnl
    define(`MAIL_HUB')dnl
    TRUST_AUTH_MECH(`GSSAPI DIGEST-MD5')dnl
    FEATURE(always_add_domain)dnl
    FEATURE(access_db)dnl
    MAILER(local)dnl
    MAILER(smtp)dnl
    MAILER(uucp)dnl
    define(`SMART_HOST', `posta.domain.com')
    define(`confCACERT_PATH', `/etc/mail/certs')dnl
    define(`confCACERT', `/etc/mail/certs/domain.com.crt')dnl
    define(`confSERVER_CERT', `/etc/mail/certs/solaris11.domain.com.crt')dnl
    define(`confSERVER_KEY', `/etc/mail/certs/solaris11.domain.com.key')dnl
    define(`confCLIENT_CERT', `/etc/mail/certs/solaris11.domain.com.crt')dnl
    define(`confCLIENT_KEY', `/etc/mail/certs/solaris11.domain.com.key')dnl
    define(`confRAND_FILE',`file:/dev/random')dnl
    D{tls_version}TLSv1
    and makemap dbm access file
    Last question: how to disable ssl3 and enable tls1 only?

Maybe you are looking for

  • Multiple itunes (libraries) for multiple ipods

    I have read the FAQ's in several places and my specific situation is not addressed so here goes... I just got a new computer and when loading my itunes library/ipod and my wife's itunes library/ipod I would like to do so without setting up a second u

  • Multibyte character error... (SQL*Loader)

    Hi, I am getting error while loading data via SQL*Loader: "Multibyte character error." while loading data from flat files comgin from mailframe into oracle 10g Rel2 with character set AL32UTF8 here is my .ctl loader file OPTIONS (ERRORS=9999, ROWS=50

  • Password reset problems in planning and shared services

    We had all our repository passwords expire today(by some default).We had to reset them(and set them to not expire!). According to the epm 11 admin guide, we have to reconfigure database for all applications using the config tool-which we did. Now in

  • Photoshop CS6 - 64 bit Optimus issue - SOLVED!

    Photoshop CS6 64-bit will not run when Optimus is enabled on my W520 system The program works fine if I have discrete only set in the BIOS. Setting the default graphics adapter to NVIDIA GPU when using Optimus still has the problem. Anyone seen this

  • Mail changing my email address in prefs

    In Mail > Prefs> Accounts, Mail keeps changing my email address field to 'myname'@mac.com, when the actual address is '[email protected]" The server doesn't recognize this address, of course, so I can't send mail. I correct the address, save the chan