validate_recipients() remove extra copy of recipients
authorArt Cancro <ajc@citadel.org>
Wed, 27 Mar 2024 15:47:55 +0000 (08:47 -0700)
committerArt Cancro <ajc@citadel.org>
Wed, 27 Mar 2024 15:47:55 +0000 (08:47 -0700)
commit724bf4e35d6067c6646430953d685931b5f16b0c
tree2b7ff405b97e38e5f5b5ffb384fa810a3a39444b
parent683446d905326f7d23de2c902880bc9fa8ef7d74
validate_recipients() remove extra copy of recipients

We no longer need to copy recipients_in to recipients, because we no longer
destructively tokenize it.  Now we non-destructively tokenize it into an array.

Also I discovered that there is an unused parameter in that call.  Removed it
and the one place where it was being non-functionally called.
citadel/server/internet_addressing.c
citadel/server/modules/imap/imap_fetch.c
citadel/server/modules/imap/imap_search.c
citadel/server/modules/smtp/smtp_util.c
citadel/server/msgbase.c