Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter gothw

    (@gothw)

    Founded the issue in contact-form-7/includes/submission.php. (line 203)

    private function spam() {
    		$spam = false;
    
    		$user_agent = (string) $this->get_meta( 'user_agent' );
    
    		if ( strlen( $user_agent ) < 2 ) {
    			$spam = true;
    		}
    
    		if ( WPCF7_VERIFY_NONCE && ! $this->verify_nonce() ) {
    			$spam = true;
    		}
    
    		if ( $this->blacklist_check() ) {
    			$spam = true;
    		}
    
    		return apply_filters( 'wpcf7_spam', $spam );
    	}

    In my case, if i change $spam value to false in blacklist_check the mail is sent.

    Now i need to know what blacklist i need to check.

    Thread Starter gothw

    (@gothw)

    Debugging the summit I can see this if can help:

    {"mailSent":false,"into":"#wpcf7-f75859-p75860-o1","captcha":null,"message":"There was an error trying
     to send your message. Please try again later.","spam":true}

    I don’t know why is marked as SPAM

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