Codebase list golang-github-farsightsec-go-nmsg / upstream/0.0_git20190917.04d2174 nmsg_base / email.proto
upstream/0.0_git20190917.04d2174

Tree @upstream/0.0_git20190917.04d2174 (Download .tar.gz)

email.proto @upstream/0.0_git20190917.04d2174

11a49f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
syntax = "proto2";
package nmsg.base;

enum EmailType {
    unknown = 0;
    spamtrap = 1;
    rej_network = 2;
    rej_content = 3;
    rej_user = 4;
}

message Email {
    optional EmailType  type = 8;
    optional bytes      headers = 2;
    optional bytes      srcip = 3;
    optional bytes      srchost = 4;
    optional bytes      helo = 5;
    optional bytes      from = 6;
    repeated bytes      rcpt = 7;
    repeated bytes      bodyurl = 9;
    optional bytes      body = 10;
}