You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@servicemix.apache.org by "Ivan Pryvalov (JIRA)" <ji...@apache.org> on 2008/09/10 12:06:52 UTC

[jira] Created: (SM-1568) SMTPS does not word

SMTPS does not word
-------------------

                 Key: SM-1568
                 URL: https://issues.apache.org/activemq/browse/SM-1568
             Project: ServiceMix
          Issue Type: Bug
         Environment: SMX 3.3-SMAPSHOT 
            Reporter: Ivan Pryvalov
             Fix For: 3.3


  it is not possible to use SMTPS (for example, gmail)

connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (SM-1568) SMTPS does not word

Posted by "Lars Heinemann (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lars Heinemann updated SM-1568:
-------------------------------

    Affects Version/s:     (was: 3.3)
                       servicemix-mail-2008.01
        Fix Version/s:     (was: 3.3)

> SMTPS does not word
> -------------------
>
>                 Key: SM-1568
>                 URL: https://issues.apache.org/activemq/browse/SM-1568
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-mail
>    Affects Versions: servicemix-mail-2008.01
>         Environment: SMX 3.3-SMAPSHOT 
>            Reporter: Ivan Pryvalov
>            Assignee: Lars Heinemann
>             Fix For: servicemix-mail-2008.01
>
>
>   it is not possible to use SMTPS (for example, gmail)
> connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (SM-1568) SMTPS does not word

Posted by "Lars Heinemann (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=45587#action_45587 ] 

lhe edited comment on SM-1568 at 9/10/08 3:52 AM:
-------------------------------------------------------------

Fixed this issue.
Thanks for pointing this out, Ivan.

      was (Author: lhe):
    Fixed this issue.
Thanks for pointoing this out, Ivan.
  
> SMTPS does not word
> -------------------
>
>                 Key: SM-1568
>                 URL: https://issues.apache.org/activemq/browse/SM-1568
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-mail
>    Affects Versions: 3.3
>         Environment: SMX 3.3-SMAPSHOT 
>            Reporter: Ivan Pryvalov
>            Assignee: Lars Heinemann
>             Fix For: 3.3
>
>
>   it is not possible to use SMTPS (for example, gmail)
> connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (SM-1568) SMTPS does not word

Posted by "Lars Heinemann (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lars Heinemann reassigned SM-1568:
----------------------------------

    Assignee: Lars Heinemann

> SMTPS does not word
> -------------------
>
>                 Key: SM-1568
>                 URL: https://issues.apache.org/activemq/browse/SM-1568
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-mail
>    Affects Versions: 3.3
>         Environment: SMX 3.3-SMAPSHOT 
>            Reporter: Ivan Pryvalov
>            Assignee: Lars Heinemann
>
>   it is not possible to use SMTPS (for example, gmail)
> connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (SM-1568) SMTPS does not word

Posted by "Lars Heinemann (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lars Heinemann resolved SM-1568.
--------------------------------

    Fix Version/s: 3.3
       Resolution: Fixed

Fixed this issue.
Thanks for pointoing this out, Ivan.

> SMTPS does not word
> -------------------
>
>                 Key: SM-1568
>                 URL: https://issues.apache.org/activemq/browse/SM-1568
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-mail
>    Affects Versions: 3.3
>         Environment: SMX 3.3-SMAPSHOT 
>            Reporter: Ivan Pryvalov
>            Assignee: Lars Heinemann
>             Fix For: 3.3
>
>
>   it is not possible to use SMTPS (for example, gmail)
> connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (SM-1568) SMTPS does not word

Posted by "Ivan Pryvalov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=45583#action_45583 ] 

Ivan Pryvalov commented on SM-1568:
-----------------------------------

1. class MailSenderEndpoint :
   method processInOut and method processInOnly:


  snippet from code:

 ...
 Transport.send(msg);
 ...


Found issue:
  it is not possible to use SMTPS (for example, gmail)

connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx


Steps to resolve:

 replace snippet from code with

 ...
Transport transport = session.getTransport();

                transport.connect(
                        MailSenderEndpoint.this.config.getHost(),
                        MailSenderEndpoint.this.config.getPort(),
                        MailSenderEndpoint.this.config.getUsername(),
                        MailSenderEndpoint.this.config.getPassword()
                        );
                transport.sendMessage(msg, msg.getAllRecipients());
                transport.close();
... 

> SMTPS does not word
> -------------------
>
>                 Key: SM-1568
>                 URL: https://issues.apache.org/activemq/browse/SM-1568
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: SMX 3.3-SMAPSHOT 
>            Reporter: Ivan Pryvalov
>             Fix For: 3.3
>
>
>   it is not possible to use SMTPS (for example, gmail)
> connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (SM-1568) SMTPS does not word

Posted by "Guillaume Nodet (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guillaume Nodet updated SM-1568:
--------------------------------

    Fix Version/s: servicemix-mail-2008.01

> SMTPS does not word
> -------------------
>
>                 Key: SM-1568
>                 URL: https://issues.apache.org/activemq/browse/SM-1568
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-mail
>    Affects Versions: 3.3
>         Environment: SMX 3.3-SMAPSHOT 
>            Reporter: Ivan Pryvalov
>            Assignee: Lars Heinemann
>             Fix For: 3.3, servicemix-mail-2008.01
>
>
>   it is not possible to use SMTPS (for example, gmail)
> connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Work started: (SM-1568) SMTPS does not word

Posted by "Lars Heinemann (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on SM-1568 started by Lars Heinemann.

> SMTPS does not word
> -------------------
>
>                 Key: SM-1568
>                 URL: https://issues.apache.org/activemq/browse/SM-1568
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-mail
>    Affects Versions: 3.3
>         Environment: SMX 3.3-SMAPSHOT 
>            Reporter: Ivan Pryvalov
>            Assignee: Lars Heinemann
>
>   it is not possible to use SMTPS (for example, gmail)
> connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (SM-1568) SMTPS does not word

Posted by "Ivan Pryvalov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1568?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ivan Pryvalov updated SM-1568:
------------------------------

        Fix Version/s:     (was: 3.3)
    Affects Version/s: 3.3
          Component/s: servicemix-mail

> SMTPS does not word
> -------------------
>
>                 Key: SM-1568
>                 URL: https://issues.apache.org/activemq/browse/SM-1568
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-mail
>    Affects Versions: 3.3
>         Environment: SMX 3.3-SMAPSHOT 
>            Reporter: Ivan Pryvalov
>
>   it is not possible to use SMTPS (for example, gmail)
> connection: smtps://j.test.my.test%40gmail.com@smtp.gmail.com?password=xxxx

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.