I have 2 mbox files that would like to join. What is the best way to do so? I was thinking on something like this:
$ cat mbox1 >> mbox2
It might look like a dumb question, but I'm concerned that the attachments wont be copied or any other problem can occur.
You can do this without touching the original mbox files -
cat mbox1 mbox2 > newmbox
Then look at "newmbox" with your mail client and see if it's OK -
meanwhile mbox1 and mbox2 are unchanged.
Joe