aboutsummaryrefslogtreecommitdiff
path: root/deliver_local.go
diff options
context:
space:
mode:
Diffstat (limited to 'deliver_local.go')
-rw-r--r--deliver_local.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/deliver_local.go b/deliver_local.go
new file mode 100644
index 0000000..9a29459
--- /dev/null
+++ b/deliver_local.go
@@ -0,0 +1,27 @@
+package main
+
+import (
+ "fmt"
+ "context"
+ "github.com/jackc/pgx/v5/pgxpool"
+)
+
+func deliver_local(ctx context.Context, db *pgxpool.Pool, envelope_from string, envelope_recipients []string, data []byte, addresses []string) error {
+ tx, err := db.Begin(ctx)
+ if err != nil {
+ return err
+ }
+ defer tx.Rollback(ctx) // BUG: Potential missed error here, but this will always fail if commit succeeded
+ for _, address := range addresses {
+ _, err = tx.Exec(ctx, "INSERT INTO mail (mailbox_id, data) SELECT a.mailbox_id, $2::bytea FROM addresses a JOIN mailboxes m ON a.mailbox_id = m.id WHERE a.address = $1;", address, data)
+ if err != nil {
+ fmt.Printf("%#v\n", err)
+ return err
+ }
+ }
+ err = tx.Commit(ctx)
+ if err != nil {
+ return err
+ }
+ return nil
+}