Title: kjup's Replies | WordPress.org

---

# kjup

  [  ](https://wordpress.org/support/users/kjup/)

 *   [Profile](https://wordpress.org/support/users/kjup/)
 *   [Topics Started](https://wordpress.org/support/users/kjup/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kjup/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kjup/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kjup/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kjup/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kjup/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Urls get appended with a hypen and number at the end like -2](https://wordpress.org/support/topic/urls-get-appended-with-a-hypen-and-number-at-the-end-like-2/)
 *  [kjup](https://wordpress.org/support/users/kjup/)
 * (@kjup)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/urls-get-appended-with-a-hypen-and-number-at-the-end-like-2/#post-1927384)
 * Thanks, I have discovered a plugin to get around this as I never use the paging
   feature if you wish to get around this issue. [http://wordpress.org/extend/plugins/allow-numeric-stubs/](http://wordpress.org/extend/plugins/allow-numeric-stubs/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Urls get appended with a hypen and number at the end like -2](https://wordpress.org/support/topic/urls-get-appended-with-a-hypen-and-number-at-the-end-like-2/)
 *  [kjup](https://wordpress.org/support/users/kjup/)
 * (@kjup)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/urls-get-appended-with-a-hypen-and-number-at-the-end-like-2/#post-1927382)
 * Did you ever come up with a resolution to this one? I too am having the same 
   issue and the only way it seems to work is by adding a letter in front of the
   numbers or after the numbers. It seems that when it’s just numbers in the permalink
   it’s forcing the hypen in after the numbers you add in.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Postie plugin issues](https://wordpress.org/support/topic/postie-plugin-issues/)
 *  Thread Starter [kjup](https://wordpress.org/support/users/kjup/)
 * (@kjup)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/postie-plugin-issues/#post-705832)
 * I have discovered that this was indeed a permissions error so no need to reply.
 * Thanks,
    Kjup
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Postie deleting messages from the pop server](https://wordpress.org/support/topic/postie-deleting-messages-from-the-pop-server/)
 *  [kjup](https://wordpress.org/support/users/kjup/)
 * (@kjup)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/postie-deleting-messages-from-the-pop-server/#post-705831)
 * in postie-functions.php it looks like there is a call to delete the mail on lines
   231-252:
 *     ```
       // loop through messages
       	for ($i=1; $i <= $msg_count; $i++) {
       		$emails[$i] = implode ('',$pop3->get($i));
               if ( $config["DELETE_MAIL_AFTER_PROCESSING"]) {
       			if( !$pop3->delete($i) ) {
       				echo 'Oops '.$pop3->ERROR.'\n';
       				$pop3->reset();
       				exit;
       			} else {
       				echo "Mission complete, message $i deleted.\n";
       			}
       		}
               else {
                   print("Not deleting messages!\n");
               }
       	}
       	//clean up
       	$pop3->quit();
       	return $emails;
       }
       /**
       ```
   
 * There is also another reference in postieIMAP.php on lines 103-108:
 *     ```
       /**
             * Marks a message for deletion
             */
           function deleteMessage($index){
               imap_delete($this->_connection,$index);
           }
       ```
   
 * tinker with those lines in those files or possibly just remove and see what happens.
 * Best of luck,
    Kjup

Viewing 4 replies - 1 through 4 (of 4 total)