Viewing 7 replies - 1 through 7 (of 7 total)
  • Every day 2 emails also, but twice, two in the morning and two in the evening : 3.9.3-alpha-20140827

    Any idea how to stop that?

    Thread Starter Mark Ratledge

    (@songdogtech)

    @gosattler: no reason to ask the same questions in my thread; I’d start your own topic.

    Actually, there’s good reason, and admins usually frown on adding same topic over and over. Forum etiquette 101, search to see if there is already a topic matching what problem you’re having, and use that one if there is one. What, don’t want anyone touching your precious topic? Get real man. That said, since no one is replying to you, we’ll look elsewhere.

    PS Reason we post in an existing one is so they know how big the problem is, and not something just with YOUR install.

    Thread Starter Mark Ratledge

    (@songdogtech)

    What, don’t want anyone touching your precious topic? Get real man. That said, since no one is replying to you, we’ll look elsewhere.

    Dude. Relax. There are rules to these forums, for the benefit of all, not just me. Including rules about starting your own thread with your own specifics. Read https://codex.www.ads-software.com/Forum_Welcome

    Moderator Dion Hulse

    (@dd32)

    Meta Developer

    FYI; The updates that were being seen here (updating to the “same” version) is intended when running on the Bleeding Edge nightlies.

    Previously WordPress wouldn’t update the verison string in the footer (it was only done manually) so the revision number would remain the same for weeks at a time. It was always updating to new code though.

    As of a few weeks ago, all new nightly builds automatically get a new revision number appended, so you’ll always know it’s actually running more recent code.

    As for how to disable the emails, I suggest a gmail filter.. but you can also disable the auto-update emails through a filter placed in a plugin or themes functions.php:
    add_filter( 'auto_core_update_send_email', '__return_false' );

    Thread Starter Mark Ratledge

    (@songdogtech)

    @dion, Thanks, the old versioning of the builds and the new version numbers makes sense. Thanks.

    Plugin Author Sergey Biryukov

    (@sergeybiryukov)

    WordPress Dev

    FWIW, auto_core_update_send_email filter does not affect debug emails.

    Looking for a way to skip all successful update emails, I ended up with this:

    function skip_auto_core_update_email( $send, $type, $core_update, $result ) {
    	return ( 'success' !== $type );
    }
    add_filter( 'auto_core_update_send_email', 'skip_auto_core_update_email', 10, 4 );
    
    function skip_automatic_updates_debug_email( $email, $failures, $update_results ) {
    	if ( ! $failures ) {
    		$email['body'] = '';
    	}
    
    	return $email;
    }
    add_filter( 'automatic_updates_debug_email', 'skip_automatic_updates_debug_email', 10, 3 );

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Updates over and over again’ is closed to new replies.