On 12.04.2010, at 10:21, Kenneth Thorman wrote:
> Config Options: Framework -> Core::Sendmail
> SendmailModule: SMTPS
> SendmailModule::Host: smtp.gmail.com
> SendmailModule::Port: 465
> SendmailModule::AuthUser: XXX...@XXXXX.com (a valid username)
> SendmailModule::AuthPassword: XXXXXXXXXXXX (corresponding password to username above)
Could you try the following command:
$ openssl s_client -host smtp.gmail.com -port 465
to get a valid SSL connection to gmail?
And if have SMTP connection up, what if you try authenticate with your
credentials via the openssl prompt?
hth,
Markus
--
Markus Esche
Customer Development
OTRS AG
Europaring 4
94315 Straubing
Deutschland
T: +49 (0) 9421 56818 0
F: +49 (0) 9421 56818 18
I: http://www.otrs.com/
Geschäftssitz: Bad Homburg
Amtsgericht: Bad Homburg, HRB 10751
Steuernummer: 003 240 97505
Aufsichtsratsvorsitzender: Burchard Steinbild
Vorstand: André Mindermann (Vorsitzender), Martin Edenhofer
---------------------------------------------------------------------
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs
NEW! ENTERPRISE SUBSCRIPTION - Get more information NOW!
http://www.otrs.com/en/support/enterprise-subscription/
Kenneth Thorman wrote:
> Hi everyone
>
>
> I have spent a long time testing the different suggestions here but
> nothing seems to work.
>
> I would like to send outgoing emails from OTRS through Google Apps.
>
> More specifically
>
> Config Options: Framework -> Core::Sendmail
> SendmailModule: SMTPS
> SendmailModule::Host: smtp.gmail.com <http://smtp.gmail.com>
> smtp.gmail.com <http://smtp.gmail.com> 465
> Trying 216.239.59.109...
> Connected to smtp.gmail.com <http://smtp.gmail.com> (216.239.59.109).
> Error: Can't connect to smtp.gmail.com <http://smtp.gmail.com>: !
> </br>Self->{FQDN} = XXXXX[..]
> Comment:
> Bug Report:
> Traceback: ERROR: OTRS-CGI-10 Perl: 5.8.8 OS: linux Time: Mon Apr
> 12 10:18:21 2010
>
> Message: Can't connect to smtp.gmail.com <http://smtp.gmail.com>: !
> </br>Self->{FQDN} =XXXXXXXX</br>Self->{SMTPPort} =
> 465</br>Self->{SMTPTimeout} = 30</br>Self->{MailHost} = smtp.gmail.com
> <http://smtp.gmail.com></br>Self->{User} =
> ------------------------------------------------------------------------
>
> ---------------------------------------------------------------------
> OTRS mailing list: otrs - Webpage: http://otrs.org/
> Archive: http://lists.otrs.org/pipermail/otrs
> To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs
>
> NEW! ENTERPRISE SUBSCRIPTION - Get more information NOW!
> http://www.otrs.com/en/support/enterprise-subscription/
--
Dr. Rodney G. McDuff |Ex ignorantia ad sapientiam
Manager, Strategic Technologies Group| Ex luce ad tenebras
Information Technology Services |
The University of Queensland |
EMAIL: mcd...@its.uq.edu.au |
TELEPHONE: +61 7 3365 8220 |
openssl s_client -host smtp.gmail.com -port 465 -starttls smtp
-starttls protocol
send the protocol-specific message(s) to switch to TLS for
communication. protocol is a keyword for the intended protocol.
Currently, the only supported keywords are "smtp", "pop3",
"imap",
and "ftp".
--
Dr. Rodney G. McDuff |Ex ignorantia ad sapientiam
Manager, Strategic Technologies Group| Ex luce ad tenebras
Information Technology Services |
The University of Queensland |
EMAIL: mcd...@its.uq.edu.au |
TELEPHONE: +61 7 3365 8220 |
did you try port 587 ?
Kenneth Thorman schrieb:
> #!/usr/bin/perl
> use Net::SMTP::SSL;
>
> my $fromEmail = 'XXXXXXXXXXXXXXx';
> my $emailPassword = 'XXXXXXXXXXXXXXx';
> my $toEmail = 'XXXXXXXXXXXXx';
>
> ....
>
As the otrs.checkModules script says, that it can find Net::SMTP::SSL,
you should check if the same Perl interpreter is used. And you should
print where the otrs script can find the module. Add this line to
otrs.checkModules:
print $^X, " :: ", $INC{"Net/SMTP/SSL.pm"}, "\n" if $Module->{Module} eq
'Net::SMTP::SSL';
(add it to the place where it prints "ok (v$Version)" (around line 310) )
and add
print $^X,"\n";
to your test script that you posted above...
> I get this output
>
> Can't locate Net/SMTP/SSL.pm in @INC (@INC contains:
> /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi
> /usr/lib/perl5/site_perl/5.8.7/i386-linux-thread-multi
> ...
> /usr/lib/perl5/5.8.8 .) at ./perl_test_email_gmail.pl line 2.
> BEGIN failed--compilation aborted at ./perl_test_email_gmail.pl line 2.
>
>
Maybe you should clean your @INC...
Regards,
Renee
--
Perl-Magazin: http://perl-magazin.de
Perl-Nachrichten: http://perl-nachrichten.de
So, my last mail is obsolete...
- Renée
--
Perl-Magazin: http://perl-magazin.de
Perl-Nachrichten: http://perl-nachrichten.de
Can you print the value of $@?
my $smtp;
if (not $smtp = Net::SMTP::SSL->new('smtp.gmail.com',
Port => 465,
Debug => 1)) {
die "Could not connect to mail server -> $@\n";
}
- Renée
--
Perl-Magazin: http://perl-magazin.de
Perl-Nachrichten: http://perl-nachrichten.de
Incoming Mail (IMAP) Server - requires SSL: imap.gmail.com
Use SSL: Yes
Port: 993Outgoing Mail (SMTP) Server - requires TLS: smtp.gmail.com (use authentication)
Use Authentication: Yes
Use STARTTLS: Yes (some clients call this SSL)
Port: 465 or 587Account Name: your full email address (including @gmail.com) Google Apps users, please enter username@your_domain.com Email Address: your full Gmail email address (user...@gmail.com) Google Apps users, please enter username@your_domain.com Password: your Gmail password
--------------------------------------------------------------------- OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs NEW! ENTERPRISE SUBSCRIPTION - Get more information NOW! http://www.otrs.com/en/support/enterprise-subscription/
Is there a page where these dates are shared?
Hugh
On 1/6/11, Michiel Beijen <michiel...@otrs.com> wrote:
> Bumping an old thread:
>
> Apparently Google switched to requiring TLS?
>
> You can use TLS with OTRS although it's a bit broken in < 3.0.5 (which is
> not out yet).
>
> Instructions on updating are here: http://bugs.otrs.org/show_bug.cgi?id=6354
> for users who prefer to use old software (i.e. OTRS 2.4.x) you can install
> this package:
> http://users.otrs.com/~mb/SMTPTLS-1.0.2.opm<http://users.otrs.com/%7Emb/SMTPTLS-1.0.2.opm>
>
> Then simply go to Admin > SysConfig > Framework > Core::Sendmail
>
> select SMTPTLS as 'SendmailModule'
> host: smtp.gmail.com
> port: 587
> authuser: your...@gmail.com
> authpassword: yoursecret
>
> and it works for me...
>
> I've updated the FAQ page accordingly.
>
> --
> Mike
>
> On Mon, Apr 12, 2010 at 1:45 PM, Rodney McDuff <mcd...@its.uq.edu.au> wrote:
>
>> >From
>> <http://mail.google.com/support/bin/answer.py?answer=78799><http://mail.google.com/support/bin/answer.py?answer=78799>
>>
>> *Incoming Mail (IMAP) Server - requires SSL:* imap.gmail.com
>> *Use SSL*: Yes
>> *Port*: 993 *Outgoing Mail (SMTP) Server - requires TLS:*
>> smtp.gmail.com(use authentication)
>> *Use Authentication*: Yes
>> *Use STARTTLS*: Yes (some clients call this SSL)
>> *Port*: 465 or 587 *Account Name: * your full email address (including @
>> gmail.com) Google Apps users, please enter username@your_domain.com
>> *Email
>> Address: * your full Gmail email address (user...@gmail.com) Google Apps
>> users, please enter username@your_domain.com *Password: * your Gmail
>> password
>>
>>
>> May be you need to use Net::SMTP::TLS
>> <http://search.cpan.org/~awestholm/Net-SMTP-TLS-0.12/><http://search.cpan.org/%7Eawestholm/Net-SMTP-TLS-0.12/>so
>> ------------------------------
>>
>> ---------------------------------------------------------------------
>> OTRS mailing list: otrs - Webpage: http://otrs.org/
>> Archive: http://lists.otrs.org/pipermail/otrs
>> To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs
>>
>> NEW! ENTERPRISE SUBSCRIPTION - Get more information
>> NOW!http://www.otrs.com/en/support/enterprise-subscription/
>>
>>
>>
>> --
>> Dr. Rodney G. McDuff |Ex ignorantia ad sapientiam
>> Manager, Strategic Technologies Group| Ex luce ad tenebras
>> Information Technology Services |
>> The University of Queensland |
>> EMAIL: mcd...@its.uq.edu.au |
>> TELEPHONE: +61 7 3365 8220 |
>>
>>
>>
>> ---------------------------------------------------------------------
>> OTRS mailing list: otrs - Webpage: http://otrs.org/
>> Archive: http://lists.otrs.org/pipermail/otrs
>> To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs
>>
>> NEW! ENTERPRISE SUBSCRIPTION - Get more information NOW!
>> http://www.otrs.com/en/support/enterprise-subscription/
>>
>
On Jan 6, 2011, at 14:55 , Hugh Kelley wrote:
> Is there an estimated release date for 3.0.5?
>
The estimated release for OTRS 3.0.5 is calendar week 3-4.
> Is there a page where these dates are shared?
There is currently no release plan available to the public. I am looking into this currently, and will get back with you personally as soon as I know more.
Thanks for using OTRS!
--
Shawn Beasley
Community Manager
OTRS AG
Norsk-Data-Str 1
61352 Bad Homburg
Germany
Internet: http://www.otrs.com/
Project: http://www.otrs.org/
Business location: Bad Homburg, Country Court: Bad Homburg, HRB 10751, VAT ID: DE256610065
Chairman: Burchard Steinbild, Managing Board: André Mindermann