SMTP-auth via mailx results in service unavailable

Why do my attempts to use mailx with Gandi SMTP fail with 'Service unavailable'?
I have the following ~/.mailrc file which is recognised by mailx:
set smtp=smtps://mail.gandi.net:465
set smtp-auth=login
set smtp-auth-user=harry@XXXXXXX
set smtp-auth-password=XXXXXXX
set from=harry@XXXXXXX
set ssl-verify=ignore
set nss-config-dir=/Users/neville/Thunderbird
The result is below.
From MAILER-DAEMON  Thu Dec 20 15:41:47 2012
Return-Path: <>
X-Original-To: [email protected]
Delivered-To: [email protected]
Received: by G4-N-2.local (Postfix)
          id D4E2DA382D6; Thu, 20 Dec 2012 15:41:47 +0000 (GMT)
Date: Thu, 20 Dec 2012 15:41:47 +0000 (GMT)
From: [email protected] (Mail Delivery System)
Subject: Undelivered Mail Returned to Sender
To: [email protected]
Auto-Submitted: auto-replied
MIME-Version: 1.0
Content-Type: multipart/report; report-type=delivery-status;
          boundary="78E73A382D4.1356018107/G4-N-2.local"
Message-Id: <[email protected]>
This is a MIME-encapsulated message.
--78E73A382D4.1356018107/G4-N-2.local
Content-Description: Notification
Content-Type: text/plain; charset=us-ascii
This is the mail system at host G4-N-2.local.
I'm sorry to have to inform you that your message could not
be delivered to one or more recipients. It's attached below.
For further assistance, please send mail to postmaster.
If you do so, please include this problem report. You can
delete your own text from the attached returned message.
                   The mail system
<neville@XXXXXXX>: host spool.mail.gandi.net[217.70.184.6] said: 554 5.7.1
    Service unavailable; Client host [XXXXXXX] blocked using
    pbl.spamhaus.org; http://www.spamhaus.org/query/bl?ip=XXXXXXX (in
    reply to RCPT TO command)
--78E73A382D4.1356018107/G4-N-2.local
Content-Description: Delivery report
Content-Type: message/delivery-status
Reporting-MTA: dns; G4-N-2.local
X-Postfix-Queue-ID: 78E73A382D4
X-Postfix-Sender: rfc822; [email protected]
Arrival-Date: Thu, 20 Dec 2012 15:41:47 +0000 (GMT)
Final-Recipient: rfc822; neville@XXXXXXX
Action: failed
Status: 5.7.1
Remote-MTA: dns; spool.mail.gandi.net
Diagnostic-Code: smtp; 554 5.7.1 Service unavailable; Client host
    [XXXXXXX] blocked using pbl.spamhaus.org;
    http://www.spamhaus.org/query/bl?ip=XXXXXXX
--78E73A382D4.1356018107/G4-N-2.local
Content-Description: Undelivered Message
Content-Type: message/rfc822
Received: by G4-N-2.local (Postfix, from userid 501)
          id 78E73A382D4; Thu, 20 Dec 2012 15:41:47 +0000 (GMT)
To: neville@XXXXXXX
Subject: test
Message-Id: <[email protected]>
Date: Thu, 20 Dec 2012 15:41:47 +0000 (GMT)
From: [email protected] (Neville Hillyer)
test email
--78E73A382D4.1356018107/G4-N-2.local--

http://www.spamhaus.org says:
Mail servers only run spam filters such as Spamhaus PBL on port 25, so if you find you are being blocked by the PBL when you try to send mail to your mail server that means you are not communicating with the mail server on the 'authenticated' port 587 but you're still on port 25. This means your 'SMTP Authentication' is not working correctly.
http://wiki.gandi.net/en/mail/standard-settings#smtp-account says:
SMTP Account
Name server : mail.gandi.net
Port : 25, 465 (with SSL) or 587 (try one or the other)
TLS or SSL: yes
SMTP Authentication : yes, using the same settings as for the POP / IMAP account
I was trying to use the same settings I have used for several years with Thunderbird and Apple Mail, ie SSL on port 465.
Is there something wrong with my settings which could be preventing mailx from using port 465?
A few debug tips would be appreciated.
Your link causes me to ask:  Does the mailx on Leopard support SMTP directly?

Similar Messages

  • Apex_util.get_print_document results in "503-service unavailable"

    I'm using APEX 4.2.0.3.00.08 with GlassFish 3.1.2.2 on an Oracle 10.2.0.5 database.
    Recently I created a report-query together with a xsl-fo report-layout created in Altova Stylevision. I've enabled and configured print-options and when I press my application button, I'm perfectly capable of viewing and/or saving the pdf-version of my report.
    Additionally I want to save my report as BLOB in the database, but when I try this using apex_util.get_print_document, all I get in my table is a html-page containing the message "503-service unavailable".
    I used the following page as reference:
    Creating High Fidelity PDF Reports with Oracle Application Express but apparently I'm missing something or doing something wrong......I truly hope there's someone out here to help me!!
    Thanks in advance!

    Hello Mike,
    I've been trying to create an application on apex.oracle.com to reproduce the problem, but I can't seem to get it to work.
    I've uploaded a very simple layout created in StylusStudio, a simple query on the EMP-table only containgin FIRST_NAME, LAST_NAME and EMAIL and when I add the layout to the query and press "Test report", it works fine.
    When I run the report from my application, it only shows a pdf with a thick, horizontal lines, like it's showing only empty cell borders.
    Meanwhile I found out that the APEX-listener keeps reporting similair errors, even when I use that same simple stylesheet (created with StylusStudio) on the EMP-table, even when the stylesheet does not contain any special characters at all. In stead of the message starting with INFO: Character decoding failed. Parameter [#x200B;</xsl:text> , it then ignores the complete xslt-stylesheet (the complete contents of the stylesheet is between the brackets, in stead of just the string containg the special chars).
    To be honest I'm a little lost now. First my focus was on how to get rid of the special characters, but now it looks like, even when I might succeed in that, it doesn't even solve my problem.
    Any idea why my application doesn't show me the same report I see when testing the report-query?
    The application can be found here:
    https://apex.oracle.com/pls/apex/htmldb/f?p=29586
    The bottom region is an attempt to show the pdf with the highest id, but I think it does not show the actual pdf (http-404)
    The source for that PL/SQL region is:
    declare
      src_  varchar2(256);
      mime_ varchar(48);
      id_   number;
    begin
    select max(id)
    into id_
    from report_archive;
        select mimetype
          into mime_
          from report_archive
         where id = id_;
        src_ := 'src="#OWNER#.download_doc?i_doc_id=' || id_ || '" ';
        htp.p('<div style="">');
        if instr(mime_,'pdf') > 0 then
          htp.p('<embed height="800" width="1200" name="statement" ');
        elsif instr(mime_,'excel') > 0 then
          htp.p('<embed height="800" width="1200" name="statement" ');
        else
          htp.p('<embed height="800" name="statement" ');
        end if;
        htp.p(src_);
        htp.p('type="' || mime_ || '" />');
        htp.p('</div>');
    exception
       when no_data_found then
          null;
    end;
    I really hope we can solve this!!!!
    Best regards,
    Marco

  • External SMTP Auth

    Hi folks.
    My iPod is not happy. She (he?) can't send mail from outside. I have an IMAP account that I use on my LAN server for my domains. When I go out, I can't send mail.
    Now, port 465 is apparently used for SSL SMTP, but that isn't open on the server. My router has SMTP Mail open.
    What I want to do, I forget the name of. I think it's SMTP Auth, and using a port above what routers would normally close off. So I'd like to use port 3500 or something like that. How do I do that, while using Kerberos or MD5 for sending mail from outside?
    Cheers

    I'd confirm that your ISP is (or is not) blocking inbound port 25; if the server here is connected into the ISP via a residential-grade service tier, then port 25 and port 80 blocks in-bound are fairly common. That is, confirm whether the connectivity problems here are between the ISP and the server, or at the pub.
    As for your own network perimeter, most consumer-grade routers are pretty weak, while those router-firewalls with VPN and port-forwarding aren't that much more expensive. And there are open-source firewalls around. And using a VPN into the firewall is a pretty good solution for many reasons.
    Various organizations that offer wireless do block port 25 outbound and sometimes other specific outbound ports to reduce the spread of malware, or the network loading that can result from torrents. Few organizations block outbound VPNs or webmail (port 80 or port 443) connections.

  • Smtp auth - relay

    Hi!
    We are running GWIA novell-groupwise-gwia-12.0.1-103731.
    Relaying is denied in the GWIA-settings.
    We tested the GWIA behavior.
    If we do an SMTP-Auth against the GWIA and the authentication is
    successful, relaying is allowed.
    In the GWIA "Access-Control Settings" -> "Default Class of service"
    there is "Prevent outgoing messages" defined in the "SMTP Outgoing" section.
    It seems, that it has no effect, what is defined in the Access Control
    Settings; Gwia will always allow relaying, if the user is authenticated
    against the GWIA.
    Does this work as designed, or do we have a chance that we will allow
    only specified users to relay, if they are authenticated?
    thanks in advance
    Wolfgang

    On 06.11.2012 11:12, wpolster wrote:
    > Hi!
    >
    > We are running GWIA novell-groupwise-gwia-12.0.1-103731.
    > Relaying is denied in the GWIA-settings.
    >
    > We tested the GWIA behavior.
    > If we do an SMTP-Auth against the GWIA and the authentication is
    > successful, relaying is allowed.
    > In the GWIA "Access-Control Settings" -> "Default Class of service"
    > there is "Prevent outgoing messages" defined in the "SMTP Outgoing"
    > section.
    That's a bad idea, and should result in nobody using groupwise
    internally being able to send email out. You can't remove restrictions
    in the default class of service with more specific classes.
    > It seems, that it has no effect, what is defined in the Access Control
    > Settings; Gwia will always allow relaying, if the user is authenticated
    > against the GWIA.
    Correct. The class of service restrcitions only apply to *internal*
    users, e.g everything that come from or goes to groupwise. relaying
    happens totally on the SMTP side of GWIA only, and there's no restrictions.
    > Does this work as designed, or do we have a chance that we will allow
    > only specified users to relay, if they are authenticated?
    Unfortunately not.
    CU,
    Massimo Rosen
    Novell Knowledge Partner
    No emails please!
    http://www.cfc-it.de

  • Smtp auth without hat access defined

    Hello community!!!
    We are configuring an appliance and came across a doubt that we would like to share to see if anyone can help us.
    We first configured the appliance by setting up a RELAY policy wich included the networks that were allowed to send mail through our IronPort. Before we applied that configuration, there was no way of sending mail, perhaps there are other more efficient ways but we fail to see another one.
    After this path was OK, we then configured the IronPort to use SMTP auth in a forwarding fashion to verify that clients we know are the only ones allowed to send mail. To do this we authenticate against our internal SMTP server, which contains the mailboxes of our users.
    This configuration tested OK, without issues at all.
    Now that we have this architecture working we would like to allow multiple IPs, not just the ones we defined to use our IronPort to send mail. In our scenario, we provide email services to serveral cilents that have dynamic IP. So we cannot guaranty that a given time, they will be able to send mails through our IronPort if their IP falls out of the range we defined.
    So, within HAT policies, is there a way to allow "anyone" or "any IP" to access the IronPort to send mail? The security will be enforced though our SMTP auth policy which only allows authorized personnel to send mail.
    Thank you in advanced for your thoughts and comments!!!
    Best regards!!!
    Miguel

    Yes, you can do this where the connecting external IP or sender is not known in advance.
    You would probably need to LDAP with either SMTP Auth enabled or External Authentication Queries enabled.
    So as to not *bog* down your HAT Overview with smtp auth attempts, I think it would be helpful to find a range where the incoming connection would be, then try to assign it to a SMTP Authentication Sender Group and corresponding Mail Flow Policy where the SMTP was turned on.
    I can see that this type of scenario would come into play in situations where you have traveling salespeople and you're not always sure what IP they're coming from, but they still need to relay via the IronPort.  It's best to collect as much of the information about these external relayers  as possible  and the  LDAP system, then contact Customer Support, presenting the information/facts that you have and how best to configure the IronPort HAT/LDAP/MAIL FLOW Policy section to get that working.
    Good luck,
    Kevin

  • Mail and SMTP auth (RFC 1918 error) ?

    I've an iMac and a Macbook (both with Mac OS X 10.5.3). Both connected to Internet using Airport via my WiFi router (with NAT activated on this router). This behavior is working fine since almost 2 years.
    I was using (and I'm still using) Thunderbird (last version) to read and send my emails on the iMac, and Mac OS X Mail on the Macbook.
    Everything was fine until yesterday. My provider has change is SMTP server so that authentification is now required when sending message.
    So I've activated SMTP auth in Thunderbird and all is fine. And do the same under Mail (with password option). But it doesn't work with Mail, I've got a SMTP connexion error.
    When I choose the diagnostic button, I find that SMTP connexion (EHLO) is fine, then saying my IP address (192.168.x.x) is private according to RFC 1918 and ending the connexion (QUIT).
    I have the same error on my iMac, though it just work fine with Thunderbird.
    So it seems to me Mail can't connect because of this behavior. But I don't understand why my IP address in Mail dialog with my provider SMTP server is not NATed by my router, like all other IP traffic.
    And I don't know what to do to correct this problem.

    Well, as SMTP authentification is only required to forward mail to another domain, I try to send an mail to my wife who is on the same domain as myself. It work fine with authentification disabled using Thunderbird but don't work with Mail.
    As it use to work fine until I change the configuration, I try to delete my account informations and create a new one as it was 2 days ago (without SMTP auth) but it still doesn't work even if I've got no problem with Thunderbird.
    Anyone as an idea about all this mess ? My only clue is the Mail connection diag which show connect, helo (with my private IP), server response 550 RFC 1918 and quit. Even if I found this behavior very strange, the result of the diag is the same with or without SMTP auth actived. So I suppose it was already the same before when it was working fine...

  • DTR: Service Unavailable

    Hi,
    I am developing WD application under NWDI (Netweaver CE 7.2), track is configured and worked fine until today, but now I've got an error message while trying to checkout file:
    Ping on server 'http://<host>:50300/dtr/' returned: 503 Service Unavailable
    Server is running, I can access DTR via browser with "http://<host>:50300/dtr/", everything seems to be fine, but NWDS keeps showing errors: 503 Service Unavailable.
    Any ideas?

    Hi Ilya Karnaukhov,
    Please go through the below mentioned procedure and provide me the results.
    1) Open the below mentioned DTR URL
    http://<host>:<port>/dtr
    If the above Link is not accessible, then it will be giving some error trace.
    Please provide that entire trace to me, I will analyse it.
    2) DTR basically runs by the below mentioned standard service.
    tcdtrenterpriseapp(sap.com)
    that is contained inside DI_DTR Software Component.
    3) To Check whether this services is running or not, follow the below mentioned procedure.
    Goto Netweaver Administrator by opening the following URL...
    http://<host>:<port>/nwa
    Operations Management >> Systems >> Start & Stop >> Open Java EE Applications Tab
    In the Name column serach for "tcdtrenterpriseapp"
    Check the status column and find out whether it is running or stopped.
    4) If the services is stopped then you will have to manually start the service with the option
    On All instances and "Started" as initial State.
    If the service "tcdtrenterpriseapp" is running fine then,
    You need to check other services that are responsible for running CMS and CBS are available or not.
    Let me know about your findings.
    Regards,
    Shreyas Pandya

  • SMS_WSUS_CONFIGURATION_MANAGER - MessageID 6600 - The request failed with HTTP status 503: Service Unavailable

    Hi all,
    knowning that there are already a lot of posts concerning above message, I have to write an additional one as I could not find a solution on the web yet.
    Situation:
    Windows Server 2008 forest including empty root and two child domains, one child domain does have SCCM SP1 (central primary site WND) installed on W2k8 x64 machine including WSUS 3.0 SP1 => everything is working fine.
    Second child domain also contains a SCCM SP1 server  (primary site HUN) running on W2k8 x64 and is defined as child site of central site WND => everything is working fine too - except Software Updates.
    WSUS 3.0 SP1 installed on both SCCM servers by creating additional web site (not using "defautl web site") and configured ports 8530 and 8531 (SSL not used!). No proxy necessary/used. All WSUS 3.0 requirements for W2k8 are installed (IIS roles)
    Error:
    SMS_WSUS_CONFIGURATION_MANAGER - MessageID 6600:
    SMS WSUS Configuration Manager failed to configure upstream server settings on WSUS Server "xxxx0003".
    Possible cause: WSUS Server version 3.0 SP1 and above is not installed or cannot be contacted.
    Solution: Verify that the WSUS Server version 3.0 SP1 or greater is installed. Verify that the IIS ports configured in SMS are same as those configured on the WSUS IIS website.
    wsusutil checkhealth =>OK
    downloading updates from WSUS at central site (SUSDB and WSUS folder equal in size) =>OK
    wsus admin console able to connect and configuration possible => OK
    IIS ports configured within SMS are equal to those configured for WSUS website
    SCCM config (using Configuration Manager Console) does look correct - ConfigMgr Software Update Point role properties and Software Update Point Component properties
    wcm.log does report an error: (SCCM Log files at the end.)
    "The request failed with HTTP status 503: Service Unavailable"
    IIS log files of both websites (default web site and WSUS Administration website) do not show any errors.
    Questions:
    What else should I look at? (registyr, SUSDB content,..)
    What exactly does happen during the attempt to configure the upstream server by the SMS_WSUS_Configuration_Manager component? I guess a SMS process tries to contact a webservice - would it be possible to debug in more detail ?
    And finally - Who does know the solution ?
    wcm.log:
    Found WSUS Admin dll of assembly version Microsoft.UpdateServices.Administration, Version=3.0.6000.273, Major Version = 0x30000, Minor Version = 0x17700111 SMS_WSUS_CONFIGURATION_MANAGER 16.07.2008 12:49:47 4468 (0x1174)
    Found WSUS Admin dll of assembly version Microsoft.UpdateServices.Administration, Version=3.1.6001.1, Major Version = 0x30001, Minor Version = 0x17710001 SMS_WSUS_CONFIGURATION_MANAGER 16.07.2008 12:49:47 4468 (0x1174)
    The installed WSUS build has the valid and supported WSUS Administration DLL assembly version (3.1.6001.65) SMS_WSUS_CONFIGURATION_MANAGER 16.07.2008 12:49:47 4468 (0x1174)
    System.Net.WebException: The request failed with HTTP status 503: Service Unavailable.~~   at Microsoft.UpdateServices.Administration.AdminProxy.CreateUpdateServer(Object[] args)~~   at Microsoft.UpdateServices.Administration.AdminProxy.GetUpdateServer(String serverName, Boolean useSecureConnection, Int32 portNumber)~~   at Microsoft.SystemsManagementServer.WSUS.WSUSServer.ConnectToWSUSServer(String ServerName, Boolean UseSSL, Int32 PortNumber) SMS_WSUS_CONFIGURATION_MANAGER 16.07.2008 12:49:47 4468 (0x1174)
    Remote configuration failed on WSUS Server. SMS_WSUS_CONFIGURATION_MANAGER 16.07.2008 12:49:47 4468 (0x1174)
    STATMSG: ID=6600 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_WSUS_CONFIGURATION_MANAGER" SYS=xxxx0003 SITE=HUN PID=2424 TID=4468 GMTDATE=Mi Jul 16 10:49:47.758 2008 ISTR0="xxxx0003" ISTR1="" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_WSUS_CONFIGURATION_MANAGER 16.07.2008 12:49:47 4468 (0x1174)
    Waiting for changes for 59 minutes SMS_WSUS_CONFIGURATION_MANAGER 16.07.2008 12:49:47 4468 (0x1174)
    wsusctrl.log (looks fine to me - is able to connect to local WSUS !):
    SMS_EXECUTIVE started SMS_WSUS_CONTROL_MANAGER as thread ID 6156 (0x180C). SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 2732 (0x0AAC)
    This is a WSUS Role as WSUS registry key exists. SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Found WSUS Admin dll of assembly version Microsoft.UpdateServices.Administration, Version=3.0.6000.273, Major Version = 0x30000, Minor Version = 0x17700111 SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Found WSUS Admin dll of assembly version Microsoft.UpdateServices.Administration, Version=3.1.6001.1, Major Version = 0x30001, Minor Version = 0x17710001 SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    The installed WSUS build has the valid and supported WSUS Administration DLL assembly version (3.1.6001.65) SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Successfully connected to local WSUS server SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Local WSUS Server Proxy settings are correctly configured as Proxy Name  and Proxy Port 80 SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Waiting for changes for 0 minutes SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Timed Out... SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Found WSUS Admin dll of assembly version Microsoft.UpdateServices.Administration, Version=3.0.6000.273, Major Version = 0x30000, Minor Version = 0x17700111 SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Found WSUS Admin dll of assembly version Microsoft.UpdateServices.Administration, Version=3.1.6001.1, Major Version = 0x30001, Minor Version = 0x17710001 SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    The installed WSUS build has the valid and supported WSUS Administration DLL assembly version (3.1.6001.65) SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Successfully connected to local WSUS server SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Local WSUS Server Proxy settings are correctly configured as Proxy Name  and Proxy Port 80 SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Successfully connected to local WSUS server SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    There are no unhealthy WSUS Server components on WSUS Server xxxx0003 SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:01 6156 (0x180C)
    Successfully checked database connection on WSUS server xxxx0003 SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:02 6156 (0x180C)
    Waiting for changes for 57 minutes SMS_WSUS_CONTROL_MANAGER 16.07.2008 12:04:02 6156 (0x180C)
    wsyncmgr.log (as a result of being not able to configure upstream server I guess):
    STATMSG: ID=6701 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_WSUS_SYNC_MANAGER" SYS=xxxx0003 SITE=HUN PID=2424 TID=4476 GMTDATE=Mi Jul 16 10:03:51.481 2008 ISTR0="" ISTR1="" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_WSUS_SYNC_MANAGER 16.07.2008 12:03:51 4476 (0x117C)
    Sync failed: WSUS server not configured. Source: CWSyncMgr:oSync SMS_WSUS_SYNC_MANAGER 16.07.2008 12:08:51 4476 (0x117C)
    STATMSG: ID=6703 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_WSUS_SYNC_MANAGER" SYS=xxxx0003 SITE=HUN PID=2424 TID=4476 GMTDATE=Mi Jul 16 10:08:51.636 2008 ISTR0="CWSyncMgr:oSync" ISTR1="WSUS server not configured" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_WSUS_SYNC_MANAGER 16.07.2008 12:08:51 4476 (0x117C)

    I just experienced the exact same scenario.  After much digging I found that csakg6so posted a fix at
    Windoows-Noob
    Run Internet Explorer as the SYSTEM account (psexec -s -d -i cmd.exe & C:\Program Files\Internet Explorrer\iexplore.exe)
    Go to internet options
    Go to conections
    Go to LAN settings
    Uncheck all boxes
    The original post said to reboot, but that wasn't necessary for me.
    After initiating a manual Software Update sync the WCM.log and WSyncMgr.log errors do not return and new updates are synchronized.

  • JWS error: 503 Service Unavailable

    Ifs is running, i can map it in Windows Explorer or acces it via ftp.
    But when trying to connect via WEB, i get the message: 503 Service Unavailable.
    I checked The Java Web Server administration on port 1717 and it reports that JWS is running.
    We have on the same machine Apache Web server which runs on port 80, so we use port 81 for JWS.
    Any idea?

    We've worked it out.
    Thanks to Oracle Metalink...
    "If other protocols come up fine, this usually means that one of the following
    is not set correctly in the IfsDavServletParameters.properties file (in
    $IFSHOME/settings/oracle/ifs/protocols/dav/impl/properties):
    ifs.dav.guestusername=username
    ifs.dav.guestpassword=password
    Change the password in the IfsDavServletParameters.properties file and restart
    iFS"
    null

  • Sip 503 service unavailable and sip 500 internal server error

    Hi guys,could any one help me in the following.
    ITSP-->Voice gateway configured as CUBE-->CUCM-->UCCX
    I am moving a system from cme and aa enviroment to cucm and uccx
    The VGW is configured as CUBE and also is added as h323 gateway on cucm.
    When i tested the debug ccsip messages shows
    Sip 503 service unavailable or
    sip 500 internal server error.
    I can't now provide any debugs cause i am not on site,only on Saturday.
    As i read in previous discussion that could be the bind source address problem but i had this configured.
    Also i tried to configure the gateway instead of h232 to use sip trunk from cucm,but after this the incoming calls didn't even reach the router,the debug ccsip messages showed nothing.
    For now can any one advice me to what these 2 errors related to.
    What could be missing?
    Thanks in advance.

    Hi there : can some one explain the reason that i am getting this sip error with itsp:
    here is the debug of ccsip messages:
    Received:
    INVITE sip:[email protected];user=phone SIP/2.0
    Via: SIP/2.0/UDP 188.254.68.66:9298;branch=z9hG4bK-6110d60075a24c0f-a3c000c-1
    Call-ID: isbc6994325518768294927-1385194135-11717
    From: [email protected];user=phone>;tag=sbc09106994325518768294927
    To:
    CSeq: 1 INVITE
    Min-SE: 90
    Session-Expires: 3600;refresher=uac
    Contact:
    Allow: INVITE,CANCEL,BYE,ACK,REFER,UPDATE,INFO,PRACK
    Supported: timer,100rel
    Diversion: [email protected]>;privacy=off;screen=no;reason=unknown,[email protected]>;privacy=off;screen=no;reason=unknown
    Max-Forwards: 70
    User-Agent: VCS 5.8.2.56-03
    Content-Length: 394
    Content-Type: application/sdp
    v=0
    o=- 87852 198805 IN IP4 188.254.68.67
    s=SBC call
    c=IN IP4 188.254.68.67
    t=0 0
    m=audio 23682 RTP/AVP 8 0 18 98 96 97 101
    a=rtpmap:98 G.729a/8000
    a=rtpmap:96 G.729ab/8000
    a=rtpmap:97 G.729b/8000
    a=rtpmap:101 telephone-event/8000
    a=fmtp:101 0-15
    a=fmtp:18 annexb=no
    a=ptime:10
    a=X-vrzcap:vbd Ver=1 Mode=FaxPr ModemRtpRed=0
    a=X-vrzcap:identification bin=DSR2866 Prot=mgcp App=MG
    00:43:23: //11/FDB448CE8020/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 188.254.68.66:9298;branch=z9hG4bK-6110d60075a24c0f-a3c000c-1
    From: [email protected];user=phone>;tag=sbc09106994325518768294927
    To:
    Date: Sat, 23 Nov 2013 08:06:29 GMT
    Call-ID: isbc6994325518768294927-1385194135-11717
    CSeq: 1 INVITE
    Allow-Events: telephone-event
    Server: Cisco-SIPGateway/IOS-12.x
    Content-Length: 0
    00:43:23: //11/FDB448CE8020/SIP/Msg/ccsipDisplayMsg:
    Sent:
    SIP/2.0 503 Service Unavailable
    Via: SIP/2.0/UDP 188.254.68.66:9298;branch=z9hG4bK-6110d60075a24c0f-a3c000c-1
    From: [email protected];user=phone>;tag=sbc09106994325518768294927
    To:
    c2801#er=phone>;tag=27BA64-1DAE
    Date: Sat, 23 Nov 2013 08:06:29 GMT
    Call-ID: isbc6994325518768294927-1385194135-11717
    CSeq: 1 INVITE
    Allow-Events: telephone-event
    Server: Cisco-SIPGateway/IOS-12.x
    Reason: Q.850;cause=38
    Content-Length: 0
    00:43:23: //-1/xxxxxxxxxxxx/SIP/Msg/ccsipDisplayMsg:
    Received:
    ACK sip:[email protected];user=phone SIP/2.0
    Via: SIP/2.0/UDP 188.254.68.66:9298;branch=z9hG4bK-6110d60075a24c0f-a3c000c-1
    Call-ID: isbc6994325518768294927-1385194135-11717
    From: [email protected];user=phone>;tag=sbc09106994325518768294927
    To: ;tag=27BA64-1DAE
    CSeq: 1 ACK
    Max-Forwards: 70
    Content-Length: 0
    show run:
    voice service voip
    ip address trusted list
      ipv4 87.226.136.164 255.255.255.255
      ipv4 172.16.24.0 255.255.255.0
      ipv4 188.254.68.66 255.255.255.255
      ipv4 188.254.68.67 255.255.255.255
      ipv4 188.254.69.66 255.255.255.255
      ipv4 188.254.69.67 255.255.255.255
      ipv4 46.38.52.68 255.255.255.255
    address-hiding
    allow-connections h323 to h323
    allow-connections h323 to sip
    allow-connections sip to h323
    allow-connections sip to sip
    supplementary-service h450.12
    no supplementary-service sip moved-temporarily
    no supplementary-service sip refer
    redirect ip2ip
    fax protocol t38 version 0 ls-redundancy 0 hs-redundancy 0 fallback cisco
    sip
    voice class codec 1
    codec preference 1 g729br8
    codec preference 2 g729r8
    codec preference 3 g711alaw
    codec preference 4 g711ulaw
    voice class codec 2
    codec preference 1 g711ulaw
    codec preference 2 g711alaw
    codec preference 3 g729r8
    codec preference 4 g729br8
    voice translation-rule 1
    rule 1 /XXX5397962/ /1999/
    voice translation-rule 2
    rule 1 /XXX55317577/ /1999/
    voice translation-rule 3
    rule 1 /5555317884/ /1999/
    voice translation-profile ROS
    translate called 1
    voice translation-profile ROS2
    translate called 2
    voice translation-profile ROS3
    translate called 3
    interface FastEthernet0/0
    ip address 178.208.129.221 255.255.255.248
    ip access-group INBOUND in
    no ip unreachables
    ip verify unicast reverse-path
    ip nat outside
    ip inspect IPFW in
    ip inspect IPFW out
    ip virtual-reassembly in
    duplex auto
    speed auto
    no cdp enable
    interface FastEthernet0/1
    no ip address
    ip nat inside
    ip virtual-reassembly in
    duplex auto
    speed auto
    interface FastEthernet0/1.1
    encapsulation dot1Q 1 native
    ip address 10.110.0.200 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    interface FastEthernet0/1.2
    encapsulation dot1Q 2
    ip address 172.16.24.254 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    h323-gateway voip interface
    h323-gateway voip bind srcaddr 172.16.24.254
    ip dns server
    ip nat inside source list NAT interface FastEthernet0/0 overload
    ip route 0.0.0.0 0.0.0.0 178.208.X.X
    ip route 192.168.0.0 255.255.0.0 Null0 254
    sccp local FastEthernet0/1.2
    sccp ccm 172.16.24.101 identifier 1 version 7.0
    sccp
    sccp ccm group 1
    associate ccm 1 priority 1
    associate profile 1 register XCODE123456
    keepalive retries 1
    keepalive timeout 10
    switchover method immediate
    switchback method immediate
    dspfarm profile 1 transcode 
    codec g711ulaw
    codec g711alaw
    codec g729ar8
    codec g729abr8
    codec g729r8
    codec g729br8
    maximum sessions 6
    associate application SCCP
    dial-peer voice 10000 voip
    tone ringback alert-no-PI
    description ROSTELECOM Incoming
    translation-profile incoming ROS
    destination-pattern 74955397962
    session protocol sipv2
    session target ipv4:87.226.136.164
    session transport udp
    incoming called-number XXXX5397962
    dtmf-relay rtp-nte
    codec g711ulaw
    dial-peer voice 10010 voip
    tone ringback alert-no-PI
    description ROSTELECOM Incoming
    translation-profile incoming ROS2
    destination-pattern XXX55317577
    session protocol sipv2
    session target ipv4:87.226.136.164
    session transport udp
    incoming called-number 75555317577
    dtmf-relay rtp-nte
    codec g711ulaw
    dial-peer voice 10020 voip
    tone ringback alert-no-PI
    description ROSTELECOM Incoming
    translation-profile incoming ROS3
    preference 1
    destination-pattern 5555317884
    session protocol sipv2
    session target ipv4:188.254.68.66
    session transport udp
    incoming called-number 5555317884
    dtmf-relay rtp-nte
    codec g711ulaw
    dial-peer voice 10021 voip
    tone ringback alert-no-PI
    description ROSTELECOM Incoming
    translation-profile incoming ROS
    preference 2
    destination-pattern 5555317884
    session protocol sipv2
    session target ipv4:188.254.69.66
    session transport udp
    incoming called-number 5555317884
    dtmf-relay rtp-nte
    codec g711ulaw
    dial-peer voice 2 voip
    tone ringback alert-no-PI
    description to CUCM_PUB
    destination-pattern 1...
    session target ipv4:172.16.24.101
    voice-class codec 2 
    dtmf-relay rtp-nte
    I see in the debug that the itsp over g729 family codecs but not g711 at all
    This system was working with this dialpeers before with same provider ,just i have added the dial-peer 2 .
    I have changed the codec to match what is offered by itsp but no difference,still getting the same message.
    PLZ help ASAP.

  • BC 2 XI - Error 503: Service Unavailable

    Folks,
    we tried to connect BC and XI via the BC Adapter of XI.
    ( Scenario:  1.Step: R/3 4.7 => BC  2.Step: idoc => xml via flowservice 3.Step: BC to XI) and we got the following error message in the routing audit log of BC:
    com.wm.net.NetException: [B2BCORE.0064.9324] Server Error: HTTP error 503 Service Unavailable
    I followed the instructions of SAP-Note 803145. I tested http://<hostname>:<port>/MessagingSystem/receive/AFW/XI  and changed the poll value to 100 but without effect.
    Please suggest.
    thx in advance,
    martin
    ps.
    The XI Wizard generated a sender-agreement (adaptertype bc) which isn't shown in sxi_cache. Only sender-agreements with adaptertype xi are shown in sxi_cache. Is this "working as designed" ?
    - Message was edited -

    Hi Martin,
    Just a thought.. Is ur SLD service up and running properly?
    cheers,
    Prashanth

  • Server-Error-service-unavailable message

    I get the message "server-error-service-unavailable" when I try to add my HP Color inkjet CP1700 to the printers server (Aplications>Utilities) of the MacOS X Tiger. When I order a test from the HP Aplication is runnig well, but I can't print from any other aplication. The printer is connected directly to the G4 by a USB cable. I install a new router last saturday (via LAN for the G4 and wireless for the iBook) but I didn't use the printer since that day; can this create some kind of problem?. Can anybody help me?
    Sorry for my english...
    Muchas gracias

    hi. followed instructions on Apple support website. reset printing system. still gettting error message. computer sees my printers, but will not let me add. sudden problem. everything worked fine a few days ago.

  • Server-error-service-unavailable hp printer

    "Server-error-service-unavailable" is what I have been seeing all day. My hp officejet 5750 was working fine...don't know what happened??? All of a sudden it does not want to work. Tried everything, uninstall/drivers, etc. It looks like the software is installed, fax test is good. I can make copies, but why can't I print items from the computer??? I need help! Thank you!

    Since I had heard about this problem (perhaps CUPS related reset)
    and not experienced it - yet- I thought to search for it. I will have
    to be using an HP printer with OS X 10.4.11 on my other Mac at
    a second location, and so the resulting link is worth a close look:
    CUPS printer error reset Mac OS X - google search
    http://www.google.com/search?hl=en&q=CUPSprinter+error+reset+Mac+OS+X&btnG=GoogleSearch
    There are results relating to older and newer OS X systems,
    and the printer error also has an error code in some. One
    with some ideas has this long URL as well as a long title:
    HP Printers - Mac OS: "server-error-service-unavailable" or error "1282" message when adding a printer in OS X...
    http://slayo.com/hp-printers-mac-os-server-error-service-unavailable-or-error-12 82-message-when-adding-a-printer-in-mac-os-x/
    Hopefully these help, and there are others among the top
    10 results worth a look, too. Including support docs.
    Good luck & happy computing!

  • 554 Service unavailable

    javax.mail.SendFailedException: Invalid Addresses;
    nested exception is:
         com.sun.mail.smtp.SMTPAddressFailedException: 554 Service unavailable; Client host [my ip] blocked using dul.dnsbl.sorbs.net; Dynamic IP Addresses See: http://www.sorbs.net/lookup.shtml?my ip
    i have no idea what it means :(

    Did you follow the link?
    You were blocked from sending mail because your
    IP address is associated with spam.

  • How to config messaging 5.2 and ldap 5.2 with smtp auth?

    Hello.
    I want to config smtp auth for msg 5.2 and ldap 5.2.
    How to step of work.
    I config follow admin guide but it not work.
    Please help me and advice me.

    For your internal clients to be authenticated,
    replace "mustsaslserver" instead of "maysaslserver" in tcp_intranet channel on your imta.cnf file. Then all clients connecting from your internal IPs (listed on your mappings file) will be authenticated.
    Add the below two parameters for messenger express users to use the same system.
    configutil -o local.service.http.smtpauthuser -v "store admin user name"
    configutil -o local.service.http.smtpauthpassword -v "store admin password"
    All other external smtp connections (MX pointed) are not authenticated since they are directed to tcp_local channel.

Maybe you are looking for