/* * detect.c - Detect content * The author licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ #include "detect.h" #include #define _GNU_SOURCE #include bool detect_pgp(const char* message){ return false; } /* If body hasn't started yet, it returns NULL, if it has started, it returns * the pointer to the beginning of the newline. */ char* detect_start_of_body(char* message){ const char* data = "DATA"; char* data_cmd = strcasestr(message, data); for(;data_cmd != NULL; data_cmd = strcasestr(data_cmd+1, data)){ if(data_cmd == NULL){ return NULL; } if(data_cmd == message){ /* You don't start an smtp conversation with data eh? */ return NULL; } char before = data_cmd[-1]; char after = data_cmd[strlen(data)+1]; if(before == '\n' || after == '\r'){ /* Find the end of that line, otherwise fail... */ for(size_t i = 0; data_cmd[i] != '\0'; i++){ if(data_cmd[i] == '\n'){ return data_cmd+i+1; } } } } return NULL; } char* detect_end_of_body(char* message){ const char* data = "\r\n.\r\n"; return strstr(message, data); }