moved imap credentials from MailingList to ImapClient
This commit is contained in:
@@ -43,6 +43,10 @@
|
||||
<input type="password" name="imap_pass" value="«data.imap_pass»" id="imap_pass" />
|
||||
Password
|
||||
</label>
|
||||
<label>
|
||||
<input type="text" name="inbox" value="«data.inbox»" id="imap_inbox" />
|
||||
Inbox name
|
||||
</label>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>SMTP protocol</legend>
|
||||
|
||||
@@ -78,6 +78,7 @@ function showListOfEditableLists(data){
|
||||
$('<td/>').text(list.imap_host).appendTo(row);
|
||||
$('<td/>').text(list.imap_port).appendTo(row);
|
||||
$('<td/>').text(list.imap_user).appendTo(row);
|
||||
$('<td/>').text(list.inbox).appendTo(row);
|
||||
$('<td/>').text(list.smtp_host).appendTo(row);
|
||||
$('<td/>').text(list.smtp_port).appendTo(row);
|
||||
$('<td/>').text(list.smtp_user).appendTo(row);
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<table id="listlist">
|
||||
<tr>
|
||||
<th colspan="4">List</th>
|
||||
<th colspan="3">IMAP</th>
|
||||
<th colspan="4">IMAP</th>
|
||||
<th colspan="3">SMTP</th>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -14,6 +14,7 @@
|
||||
<th>Host</th>
|
||||
<th>Port</th>
|
||||
<th>User</th>
|
||||
<th>Inbox</th>
|
||||
<th>Host</th>
|
||||
<th>Port</th>
|
||||
<th>User</th>
|
||||
|
||||
Reference in New Issue
Block a user