11 lines
177 B
Protocol Buffer
11 lines
177 B
Protocol Buffer
syntax = "proto3";
|
|
package camp.cebula.smtp;
|
|
|
|
message SMTPSource {
|
|
message V1 {
|
|
int64 timestamp = 1;
|
|
string sender = 2;
|
|
};
|
|
bytes v1_encrypted = 1;
|
|
}
|