Kayako logo
E-mail Piping Issues E-mail piping issues and related configuration questions are posted here,

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  (#1) Old
tparikka Offline
New Member
 
Posts: 14
Join Date: Apr 2008
"Couldn't open stream" When Using POP3 Fetch - 14-05-2008, 05:11 PM

When fetching via POP3, I get the following error:

Warning
: imap_open() [function.imap-open]: Couldn't open stream {zp.rhinosoft.com:1100/pop3/notls}INBOX in D:\Inetpub\Helpdesk\modules\parser\cron_parser.php on line 107
array(1) { [0]=> string(26) "Can't login to this server" } Total Messages
Rejected Messages:
Accepted Messages:

What's interesting is that when I check my Task Log, it shows that the POP3/IMAP fetch is performed successfully. I can check the same email account using the same settings in Outlook Express without any trouble. Also, I'm not using IMAP in any of my mail queues, so I'm not sure why the function imap_open() is being called. Anyone have insight on this?

Thanks!

Last edited by tparikka; 14-05-2008 at 05:20 PM. Reason: Added OE info.
   
Reply With Quote
  (#2) Old
Salaria Offline
New Member
 
Posts: 17
Join Date: Jan 2008
14-05-2008, 06:02 PM

Hi tparikka,

Quote:
imap_open() [function.imap-open]: Couldn't open stream {zp.rhinosoft.com:1100/pop3/notls}
Are you sure you are using "1100" port for your pop3 server? POP3 default port is 110. Please make sure about POP3 port.

imai_open function is used for POP3 as well as IMAP fetching in php, so there is no issue with that.

ref: PHP: imap_open - Manual

Regards,
Mahesh Salaria
   
Reply With Quote
  (#3) Old
tparikka Offline
New Member
 
Posts: 14
Join Date: Apr 2008
14-05-2008, 06:10 PM

Hi Salaria,

Thank you for the reply! Yes, port 1100 is the port I need to use - I run a challenge/response spam filter called Zaep which runs its POP3 proxy on that port. As mentioned before I can connect to zp.rhinosoft.com:1100 with Outlook Express without any trouble. Also, thank you for the clarification about the imap function.
   
Reply With Quote
  (#4) Old
Salaria Offline
New Member
 
Posts: 17
Join Date: Jan 2008
14-05-2008, 06:26 PM

Oh! fine.

Its better to contact Kayako Services team with your FTP access to trace the exact issue.

Some times secured servers require TLS (Transport Layer Security) for authentication of other ports. Kayako Services team can made code modifications to switch to TLS instead of using "notls" while opening imap connection.

You can also find the code below in "modules/parser/cron_parser.php" to remove "/notls" and try fetching again:

$mbox = imap_open("{". $dbCore->Record4["host"].":".$dbCore->Record4["port"] ."/". $fetchtype ."/notls}INBOX", $dbCore->Record4["username"], $dbCore->Record4["userpassword"]);

Regards,
Mahesh Salaria

Last edited by Salaria; 14-05-2008 at 06:30 PM.
   
Reply With Quote
Reply

Tags
fetch, open, pop3, stream

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
POP3 Fetch Error mcwsinc E-mail Piping Issues 4 14-10-2008 04:44 PM
Feature Request - Click here to Open / Close ticket in emails bubble Duplicate Requests 2 10-12-2007 11:20 AM
Pop3 fetching working in a strange way Deepak SupportSuite, eSupport and LiveResponse 0 01-05-2006 05:19 PM



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47