35 lines
1.5 KiB
Go
35 lines
1.5 KiB
Go
package db
|
|
|
|
import "time"
|
|
|
|
// InsertEmailLog mirrors the EmailLog row creation in EmailRelay.log_email. Returns the
|
|
// new row's id (needed before recipient/attachment child rows can be inserted).
|
|
func (d *DB) InsertEmailLog(l EmailLog) (int64, error) {
|
|
res, err := d.Exec(`INSERT INTO esrv_email_logs
|
|
(message_id, timestamp, peer_ip, mail_from, to_address, cc_addresses, bcc_addresses, subject, email_headers, message_body, status, dkim_signed, username)
|
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`,
|
|
l.MessageID, l.Timestamp, l.PeerIP, l.MailFrom, l.ToAddress, l.CcAddresses, l.BccAddresses, l.Subject, l.EmailHeaders, l.MessageBody, l.Status, l.DKIMSigned, l.Username)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return res.LastInsertId()
|
|
}
|
|
|
|
// InsertEmailRecipientLog mirrors one EmailRecipientLog row creation.
|
|
func (d *DB) InsertEmailRecipientLog(l EmailRecipientLog) error {
|
|
_, err := d.Exec(`INSERT INTO esrv_email_recipient_logs
|
|
(email_log_id, recipient, recipient_type, status, error_code, error_message, server_response)
|
|
VALUES (?, ?, ?, ?, ?, ?, ?)`,
|
|
l.EmailLogID, l.Recipient, l.RecipientType, l.Status, l.ErrorCode, l.ErrorMessage, l.ServerResponse)
|
|
return err
|
|
}
|
|
|
|
// InsertEmailAttachment mirrors one EmailAttachment row creation.
|
|
func (d *DB) InsertEmailAttachment(a EmailAttachment) error {
|
|
_, err := d.Exec(`INSERT INTO esrv_email_attachments
|
|
(email_log_id, filename, content_type, file_path, size, uploaded_at)
|
|
VALUES (?, ?, ?, ?, ?, ?)`,
|
|
a.EmailLogID, a.Filename, a.ContentType, a.FilePath, a.Size, time.Now())
|
|
return err
|
|
}
|