@bobfrankston/rmfmail 1.2.39 → 1.2.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5740,7 +5740,7 @@ var WebMailxService = class {
5740
5740
  for (const cfg of settings.accounts) {
5741
5741
  const a = dbAccounts.find((d) => d.id === cfg.id);
5742
5742
  if (a)
5743
- ordered.push({ ...a, label: cfg.label, defaultSend: cfg.defaultSend || false });
5743
+ ordered.push({ ...a, ...cfg });
5744
5744
  }
5745
5745
  for (const a of dbAccounts) {
5746
5746
  if (!ordered.find((o) => o.id === a.id))