- CE5DD19582EFD856B7B9F0CEC13CDE48A400ED1535E83383619A236F7490E8779BDB9AE7A1FCB28BAF6288442CE31205C946EFC24001E074CDBAF5E41367AAF0
+ 8CBBCB864590DD9ACE0C79288A9B31E43B65223E3FE0B295B4D8B79102A08D0CFB47E5FC3516AB50C6E3B92E8995586EF57624453F4532082C47AC0C39646E1C
mp-wp/wp-admin/options-writing.php
(78 . 38)(78 . 6)
43 <?php do_settings_fields('writing', 'remote_publishing'); ?>
44 </table>
45
46 <h3><?php _e('Post via e-mail') ?></h3>
47 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p>
48
49 <table class="form-table">
50 <tr valign="top">
51 <th scope="row"><label for="mailserver_url"><?php _e('Mail Server') ?></label></th>
52 <td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" class="regular-text" />
53 <label for="mailserver_port"><?php _e('Port') ?></label>
54 <input name="mailserver_port" type="text" id="mailserver_port" value="<?php form_option('mailserver_port'); ?>" class="small-text" />
55 </td>
56 </tr>
57 <tr valign="top">
58 <th scope="row"><label for="mailserver_login"><?php _e('Login Name') ?></label></th>
59 <td><input name="mailserver_login" type="text" id="mailserver_login" value="<?php form_option('mailserver_login'); ?>" class="regular-text" /></td>
60 </tr>
61 <tr valign="top">
62 <th scope="row"><label for="mailserver_pass"><?php _e('Password') ?></label></th>
63 <td>
64 <input name="mailserver_pass" type="text" id="mailserver_pass" value="<?php form_option('mailserver_pass'); ?>" class="regular-text" />
65 </td>
66 </tr>
67 <tr valign="top">
68 <th scope="row"><label for="default_email_category"><?php _e('Default Mail Category') ?></label></th>
69 <td>
70 <?php
71 wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'default_email_category', 'orderby' => 'name', 'selected' => get_option('default_email_category'), 'hierarchical' => true));
72 ?>
73 </td>
74 </tr>
75 <?php do_settings_fields('writing', 'post_via_email'); ?>
76 </table>
77
78 <h3><?php _e('Update Services') ?></h3>
79
80 <?php if ( get_option('blog_public') ) : ?>