Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7057800
reconnect.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
reconnect.php
View Options
<?php
/**
* RoundCube Reconnect Plugin
*
* @version 0.1
* @author Sandro Knauß <hefee@debian.org>
* @license GPLv3+
*/
class
reconnect
extends
rcube_plugin
{
private
$max_attempts
;
function
init
()
{
$rcmail
=
rcmail
::
get_instance
();
$this
->
load_config
();
$this
->
imap_max_attempts
=
$rcmail
->
config
->
get
(
'reconnect_imap_max_attempts'
,
5
);
$this
->
add_hook
(
'storage_connect'
,
array
(
$this
,
'storage_connect'
));
}
function
storage_connect
(
$args
)
{
$args
[
'retry'
]
=
(
$args
[
'attempt'
]
<=
$this
->
imap_max_attempts
);
if
(
$args
[
'attempt'
]
==
1
)
{
return
$args
;
}
$storage
=
rcmail
::
get_instance
()->
get_storage
();
switch
(
$storage
->
get_error_code
())
{
case
rcube_imap_generic
::
ERROR_NO
:
case
rcube_imap_generic
::
ERROR_BAD
:
case
rcube_imap_generic
::
ERROR_BYE
:
$args
[
'retry'
]
=
false
;
break
;
}
if
(
$args
[
'retry'
])
{
// if we do a new attempt, sleep 50 to 150ms before retry.
usleep
(
rand
(
50
*
1000
,
150
*
1000
));
}
return
$args
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jun 12, 4:07 AM (13 h, 53 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
857750
Default Alt Text
reconnect.php (1 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment