Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3310884
markasjunk.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
930 B
Referenced Files
None
Subscribers
None
markasjunk.js
View Options
/* Mark-as-Junk plugin script */
function
rcmail_markasjunk
(
prop
)
{
if
(
!
rcmail
.
env
.
uid
&&
(
!
rcmail
.
message_list
||
!
rcmail
.
message_list
.
get_selection
().
length
))
return
;
var
uids
=
rcmail
.
env
.
uid
?
rcmail
.
env
.
uid
:
rcmail
.
message_list
.
get_selection
().
join
(
','
);
rcmail
.
set_busy
(
true
,
'loading'
);
rcmail
.
http_post
(
'plugin.markasjunk'
,
'_uid='
+
uids
+
'&_mbox='
+
urlencode
(
rcmail
.
env
.
mailbox
),
true
);
}
// callback for app-onload event
if
(
window
.
rcmail
)
{
rcmail
.
addEventListener
(
'init'
,
function
(
evt
)
{
// register command (directly enable in message view mode)
rcmail
.
register_command
(
'plugin.markasjunk'
,
rcmail_markasjunk
,
rcmail
.
env
.
uid
);
// add event-listener to message list
if
(
rcmail
.
message_list
)
rcmail
.
message_list
.
addEventListener
(
'select'
,
function
(
list
){
rcmail
.
enable_command
(
'plugin.markasjunk'
,
list
.
get_selection
().
length
>
0
);
});
})
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 9, 12:45 PM (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
525401
Default Alt Text
markasjunk.js (930 B)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment