123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: gostfix.proto
- package common
- import (
- fmt "fmt"
- proto "github.com/golang/protobuf/proto"
- math "math"
- )
- // Reference imports to suppress errors if they are not otherwise used.
- var _ = proto.Marshal
- var _ = fmt.Errorf
- var _ = math.Inf
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the proto package it is being compiled against.
- // A compilation error at this line likely means your copy of the
- // proto package needs to be updated.
- const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
- type MailBody struct {
- PlainText string `protobuf:"bytes,1,opt,name=plainText,proto3" json:"plainText,omitempty"`
- RichText string `protobuf:"bytes,2,opt,name=richText,proto3" json:"richText,omitempty"`
- Attachments []*AttachmentHeader `protobuf:"bytes,3,rep,name=attachments,proto3" json:"attachments,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-" bson:"-"`
- XXX_unrecognized []byte `json:"-" bson:"-"`
- XXX_sizecache int32 `json:"-" bson:"-"`
- }
- func (m *MailBody) Reset() { *m = MailBody{} }
- func (m *MailBody) String() string { return proto.CompactTextString(m) }
- func (*MailBody) ProtoMessage() {}
- func (*MailBody) Descriptor() ([]byte, []int) {
- return fileDescriptor_0ab36b6dc6e1dcaa, []int{0}
- }
- func (m *MailBody) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_MailBody.Unmarshal(m, b)
- }
- func (m *MailBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_MailBody.Marshal(b, m, deterministic)
- }
- func (m *MailBody) XXX_Merge(src proto.Message) {
- xxx_messageInfo_MailBody.Merge(m, src)
- }
- func (m *MailBody) XXX_Size() int {
- return xxx_messageInfo_MailBody.Size(m)
- }
- func (m *MailBody) XXX_DiscardUnknown() {
- xxx_messageInfo_MailBody.DiscardUnknown(m)
- }
- var xxx_messageInfo_MailBody proto.InternalMessageInfo
- func (m *MailBody) GetPlainText() string {
- if m != nil {
- return m.PlainText
- }
- return ""
- }
- func (m *MailBody) GetRichText() string {
- if m != nil {
- return m.RichText
- }
- return ""
- }
- func (m *MailBody) GetAttachments() []*AttachmentHeader {
- if m != nil {
- return m.Attachments
- }
- return nil
- }
- type MailHeader struct {
- From string `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
- To string `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
- Cc string `protobuf:"bytes,3,opt,name=cc,proto3" json:"cc,omitempty"`
- Bcc string `protobuf:"bytes,4,opt,name=bcc,proto3" json:"bcc,omitempty"`
- Date int64 `protobuf:"zigzag64,5,opt,name=date,proto3" json:"date,omitempty"`
- Subject string `protobuf:"bytes,6,opt,name=subject,proto3" json:"subject,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-" bson:"-"`
- XXX_unrecognized []byte `json:"-" bson:"-"`
- XXX_sizecache int32 `json:"-" bson:"-"`
- }
- func (m *MailHeader) Reset() { *m = MailHeader{} }
- func (m *MailHeader) String() string { return proto.CompactTextString(m) }
- func (*MailHeader) ProtoMessage() {}
- func (*MailHeader) Descriptor() ([]byte, []int) {
- return fileDescriptor_0ab36b6dc6e1dcaa, []int{1}
- }
- func (m *MailHeader) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_MailHeader.Unmarshal(m, b)
- }
- func (m *MailHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_MailHeader.Marshal(b, m, deterministic)
- }
- func (m *MailHeader) XXX_Merge(src proto.Message) {
- xxx_messageInfo_MailHeader.Merge(m, src)
- }
- func (m *MailHeader) XXX_Size() int {
- return xxx_messageInfo_MailHeader.Size(m)
- }
- func (m *MailHeader) XXX_DiscardUnknown() {
- xxx_messageInfo_MailHeader.DiscardUnknown(m)
- }
- var xxx_messageInfo_MailHeader proto.InternalMessageInfo
- func (m *MailHeader) GetFrom() string {
- if m != nil {
- return m.From
- }
- return ""
- }
- func (m *MailHeader) GetTo() string {
- if m != nil {
- return m.To
- }
- return ""
- }
- func (m *MailHeader) GetCc() string {
- if m != nil {
- return m.Cc
- }
- return ""
- }
- func (m *MailHeader) GetBcc() string {
- if m != nil {
- return m.Bcc
- }
- return ""
- }
- func (m *MailHeader) GetDate() int64 {
- if m != nil {
- return m.Date
- }
- return 0
- }
- func (m *MailHeader) GetSubject() string {
- if m != nil {
- return m.Subject
- }
- return ""
- }
- type Mail struct {
- Header *MailHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
- Body *MailBody `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-" bson:"-"`
- XXX_unrecognized []byte `json:"-" bson:"-"`
- XXX_sizecache int32 `json:"-" bson:"-"`
- }
- func (m *Mail) Reset() { *m = Mail{} }
- func (m *Mail) String() string { return proto.CompactTextString(m) }
- func (*Mail) ProtoMessage() {}
- func (*Mail) Descriptor() ([]byte, []int) {
- return fileDescriptor_0ab36b6dc6e1dcaa, []int{2}
- }
- func (m *Mail) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_Mail.Unmarshal(m, b)
- }
- func (m *Mail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_Mail.Marshal(b, m, deterministic)
- }
- func (m *Mail) XXX_Merge(src proto.Message) {
- xxx_messageInfo_Mail.Merge(m, src)
- }
- func (m *Mail) XXX_Size() int {
- return xxx_messageInfo_Mail.Size(m)
- }
- func (m *Mail) XXX_DiscardUnknown() {
- xxx_messageInfo_Mail.DiscardUnknown(m)
- }
- var xxx_messageInfo_Mail proto.InternalMessageInfo
- func (m *Mail) GetHeader() *MailHeader {
- if m != nil {
- return m.Header
- }
- return nil
- }
- func (m *Mail) GetBody() *MailBody {
- if m != nil {
- return m.Body
- }
- return nil
- }
- type Attachment struct {
- Header *AttachmentHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
- Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-" bson:"-"`
- XXX_unrecognized []byte `json:"-" bson:"-"`
- XXX_sizecache int32 `json:"-" bson:"-"`
- }
- func (m *Attachment) Reset() { *m = Attachment{} }
- func (m *Attachment) String() string { return proto.CompactTextString(m) }
- func (*Attachment) ProtoMessage() {}
- func (*Attachment) Descriptor() ([]byte, []int) {
- return fileDescriptor_0ab36b6dc6e1dcaa, []int{3}
- }
- func (m *Attachment) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_Attachment.Unmarshal(m, b)
- }
- func (m *Attachment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_Attachment.Marshal(b, m, deterministic)
- }
- func (m *Attachment) XXX_Merge(src proto.Message) {
- xxx_messageInfo_Attachment.Merge(m, src)
- }
- func (m *Attachment) XXX_Size() int {
- return xxx_messageInfo_Attachment.Size(m)
- }
- func (m *Attachment) XXX_DiscardUnknown() {
- xxx_messageInfo_Attachment.DiscardUnknown(m)
- }
- var xxx_messageInfo_Attachment proto.InternalMessageInfo
- func (m *Attachment) GetHeader() *AttachmentHeader {
- if m != nil {
- return m.Header
- }
- return nil
- }
- func (m *Attachment) GetData() []byte {
- if m != nil {
- return m.Data
- }
- return nil
- }
- type AttachmentHeader struct {
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- FileName string `protobuf:"bytes,2,opt,name=fileName,proto3" json:"fileName,omitempty"`
- ContentType string `protobuf:"bytes,3,opt,name=contentType,proto3" json:"contentType,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-" bson:"-"`
- XXX_unrecognized []byte `json:"-" bson:"-"`
- XXX_sizecache int32 `json:"-" bson:"-"`
- }
- func (m *AttachmentHeader) Reset() { *m = AttachmentHeader{} }
- func (m *AttachmentHeader) String() string { return proto.CompactTextString(m) }
- func (*AttachmentHeader) ProtoMessage() {}
- func (*AttachmentHeader) Descriptor() ([]byte, []int) {
- return fileDescriptor_0ab36b6dc6e1dcaa, []int{4}
- }
- func (m *AttachmentHeader) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_AttachmentHeader.Unmarshal(m, b)
- }
- func (m *AttachmentHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_AttachmentHeader.Marshal(b, m, deterministic)
- }
- func (m *AttachmentHeader) XXX_Merge(src proto.Message) {
- xxx_messageInfo_AttachmentHeader.Merge(m, src)
- }
- func (m *AttachmentHeader) XXX_Size() int {
- return xxx_messageInfo_AttachmentHeader.Size(m)
- }
- func (m *AttachmentHeader) XXX_DiscardUnknown() {
- xxx_messageInfo_AttachmentHeader.DiscardUnknown(m)
- }
- var xxx_messageInfo_AttachmentHeader proto.InternalMessageInfo
- func (m *AttachmentHeader) GetId() string {
- if m != nil {
- return m.Id
- }
- return ""
- }
- func (m *AttachmentHeader) GetFileName() string {
- if m != nil {
- return m.FileName
- }
- return ""
- }
- func (m *AttachmentHeader) GetContentType() string {
- if m != nil {
- return m.ContentType
- }
- return ""
- }
- type UserInfo struct {
- User string `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
- FullName string `protobuf:"bytes,2,opt,name=fullName,proto3" json:"fullName,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-" bson:"-"`
- XXX_unrecognized []byte `json:"-" bson:"-"`
- XXX_sizecache int32 `json:"-" bson:"-"`
- }
- func (m *UserInfo) Reset() { *m = UserInfo{} }
- func (m *UserInfo) String() string { return proto.CompactTextString(m) }
- func (*UserInfo) ProtoMessage() {}
- func (*UserInfo) Descriptor() ([]byte, []int) {
- return fileDescriptor_0ab36b6dc6e1dcaa, []int{5}
- }
- func (m *UserInfo) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_UserInfo.Unmarshal(m, b)
- }
- func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_UserInfo.Marshal(b, m, deterministic)
- }
- func (m *UserInfo) XXX_Merge(src proto.Message) {
- xxx_messageInfo_UserInfo.Merge(m, src)
- }
- func (m *UserInfo) XXX_Size() int {
- return xxx_messageInfo_UserInfo.Size(m)
- }
- func (m *UserInfo) XXX_DiscardUnknown() {
- xxx_messageInfo_UserInfo.DiscardUnknown(m)
- }
- var xxx_messageInfo_UserInfo proto.InternalMessageInfo
- func (m *UserInfo) GetUser() string {
- if m != nil {
- return m.User
- }
- return ""
- }
- func (m *UserInfo) GetFullName() string {
- if m != nil {
- return m.FullName
- }
- return ""
- }
- type Frame struct {
- Skip int32 `protobuf:"zigzag32,1,opt,name=skip,proto3" json:"skip,omitempty"`
- Limit int32 `protobuf:"zigzag32,2,opt,name=limit,proto3" json:"limit,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-" bson:"-"`
- XXX_unrecognized []byte `json:"-" bson:"-"`
- XXX_sizecache int32 `json:"-" bson:"-"`
- }
- func (m *Frame) Reset() { *m = Frame{} }
- func (m *Frame) String() string { return proto.CompactTextString(m) }
- func (*Frame) ProtoMessage() {}
- func (*Frame) Descriptor() ([]byte, []int) {
- return fileDescriptor_0ab36b6dc6e1dcaa, []int{6}
- }
- func (m *Frame) XXX_Unmarshal(b []byte) error {
- return xxx_messageInfo_Frame.Unmarshal(m, b)
- }
- func (m *Frame) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
- return xxx_messageInfo_Frame.Marshal(b, m, deterministic)
- }
- func (m *Frame) XXX_Merge(src proto.Message) {
- xxx_messageInfo_Frame.Merge(m, src)
- }
- func (m *Frame) XXX_Size() int {
- return xxx_messageInfo_Frame.Size(m)
- }
- func (m *Frame) XXX_DiscardUnknown() {
- xxx_messageInfo_Frame.DiscardUnknown(m)
- }
- var xxx_messageInfo_Frame proto.InternalMessageInfo
- func (m *Frame) GetSkip() int32 {
- if m != nil {
- return m.Skip
- }
- return 0
- }
- func (m *Frame) GetLimit() int32 {
- if m != nil {
- return m.Limit
- }
- return 0
- }
- func init() {
- proto.RegisterType((*MailBody)(nil), "common.MailBody")
- proto.RegisterType((*MailHeader)(nil), "common.MailHeader")
- proto.RegisterType((*Mail)(nil), "common.Mail")
- proto.RegisterType((*Attachment)(nil), "common.Attachment")
- proto.RegisterType((*AttachmentHeader)(nil), "common.AttachmentHeader")
- proto.RegisterType((*UserInfo)(nil), "common.UserInfo")
- proto.RegisterType((*Frame)(nil), "common.Frame")
- }
- func init() {
- proto.RegisterFile("gostfix.proto", fileDescriptor_0ab36b6dc6e1dcaa)
- }
- var fileDescriptor_0ab36b6dc6e1dcaa = []byte{
- // 380 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x52, 0x3d, 0x6f, 0xdb, 0x30,
- 0x10, 0x85, 0x3e, 0xac, 0xda, 0xa7, 0xb6, 0xb0, 0x0f, 0x1d, 0x88, 0xa2, 0x83, 0x20, 0x74, 0x30,
- 0x3a, 0x18, 0xad, 0xbb, 0x79, 0x6b, 0x87, 0xa2, 0x1d, 0x9a, 0x81, 0x70, 0x80, 0x8c, 0xa1, 0x28,
- 0x2a, 0x66, 0x22, 0x89, 0x82, 0x44, 0x03, 0xf6, 0x96, 0x9f, 0x1e, 0xf0, 0x24, 0xd9, 0x8e, 0x81,
- 0x6c, 0xf7, 0xee, 0x9e, 0xee, 0xbd, 0x7b, 0x22, 0x7c, 0x78, 0x30, 0x9d, 0x2d, 0xf4, 0x61, 0xd5,
- 0xb4, 0xc6, 0x1a, 0x8c, 0xa4, 0xa9, 0x2a, 0x53, 0xa7, 0xcf, 0x1e, 0x4c, 0xff, 0x0b, 0x5d, 0xfe,
- 0x36, 0xf9, 0x11, 0xbf, 0xc0, 0xac, 0x29, 0x85, 0xae, 0xb7, 0xea, 0x60, 0x99, 0x97, 0x78, 0xcb,
- 0x19, 0x3f, 0x37, 0xf0, 0x33, 0x4c, 0x5b, 0x2d, 0x77, 0x34, 0xf4, 0x69, 0x78, 0xc2, 0xb8, 0x81,
- 0x58, 0x58, 0x2b, 0xe4, 0xae, 0x52, 0xb5, 0xed, 0x58, 0x90, 0x04, 0xcb, 0x78, 0xcd, 0x56, 0xbd,
- 0xc8, 0xea, 0xd7, 0x69, 0xf4, 0x57, 0x89, 0x5c, 0xb5, 0xfc, 0x92, 0xec, 0x2c, 0x80, 0xb3, 0xd0,
- 0xcf, 0x10, 0x21, 0x2c, 0x5a, 0x53, 0x0d, 0xfa, 0x54, 0xe3, 0x47, 0xf0, 0xad, 0x19, 0x44, 0x7d,
- 0x6b, 0x1c, 0x96, 0x92, 0x05, 0x3d, 0x96, 0x12, 0xe7, 0x10, 0x64, 0x52, 0xb2, 0x90, 0x1a, 0xae,
- 0x74, 0x5b, 0x72, 0x61, 0x15, 0x9b, 0x24, 0xde, 0x12, 0x39, 0xd5, 0xc8, 0xe0, 0x5d, 0xb7, 0xcf,
- 0x1e, 0x95, 0xb4, 0x2c, 0x22, 0xe6, 0x08, 0xd3, 0x3b, 0x08, 0x9d, 0x03, 0xfc, 0x06, 0xd1, 0x8e,
- 0x5c, 0x90, 0x7a, 0xbc, 0xc6, 0xf1, 0x82, 0xb3, 0x3f, 0x3e, 0x30, 0xf0, 0x2b, 0x84, 0x99, 0xc9,
- 0x8f, 0xe4, 0x2a, 0x5e, 0xcf, 0x2f, 0x99, 0x2e, 0x4c, 0x4e, 0xd3, 0x94, 0x03, 0x9c, 0xaf, 0xc7,
- 0xef, 0x57, 0xfb, 0xdf, 0x4e, 0x68, 0x54, 0xe9, 0xef, 0x10, 0xa4, 0xf2, 0x9e, 0xee, 0x10, 0xe9,
- 0x3d, 0xcc, 0xaf, 0xf9, 0x2e, 0x11, 0x9d, 0x0f, 0x99, 0xf9, 0x3a, 0x77, 0x3f, 0xab, 0xd0, 0xa5,
- 0xba, 0x11, 0x95, 0x1a, 0x7f, 0xd6, 0x88, 0x31, 0x81, 0x58, 0x9a, 0xda, 0xaa, 0xda, 0x6e, 0x8f,
- 0x8d, 0x1a, 0x62, 0xbc, 0x6c, 0xa5, 0x1b, 0x98, 0xde, 0x76, 0xaa, 0xfd, 0x57, 0x17, 0xc6, 0x39,
- 0xd8, 0x77, 0x83, 0xe3, 0x19, 0xa7, 0x9a, 0xb6, 0xef, 0xcb, 0xf2, 0xd5, 0xf6, 0x01, 0xa7, 0x3f,
- 0x60, 0xf2, 0xa7, 0x75, 0x32, 0x08, 0x61, 0xf7, 0xa4, 0x1b, 0xfa, 0x70, 0xc1, 0xa9, 0xc6, 0x4f,
- 0x30, 0x29, 0x75, 0xa5, 0xfb, 0x07, 0xb4, 0xe0, 0x3d, 0xc8, 0x22, 0x7a, 0x93, 0x3f, 0x5f, 0x02,
- 0x00, 0x00, 0xff, 0xff, 0x17, 0x2e, 0x20, 0xce, 0xa4, 0x02, 0x00, 0x00,
- }
|