| | |
| | | this.gui_objects.folderlist = this.gui_objects.mailboxlist; |
| | | this.http_request('getunread', ''); |
| | | } |
| | | |
| | | // ask user to send MDN |
| | | if (this.env.mdn_request && this.env.uid) |
| | | { |
| | | var mdnurl = '_uid='+this.env.uid+'&_mbox='+urlencode(this.env.mailbox); |
| | | if (confirm(this.get_label('mdnrequest'))) |
| | | this.http_post('sendmdn', mdnurl); |
| | | else |
| | | this.http_post('mark', mdnurl+'&_flag=mdnsent'); |
| | | } |
| | | |
| | | break; |
| | | |
| | |
| | | var input_message = rcube_find_object('_message'); |
| | | |
| | | // check for empty recipient |
| | | if (input_to && !rcube_check_email(input_to.value, true)) |
| | | if (input_to && !rcube_check_email(input_to.value.replace(/^\s+/, '').replace(/[\s,;]+$/, ''), true)) |
| | | { |
| | | alert(this.get_label('norecipientwarning')); |
| | | input_to.focus(); |