This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch humbedooh/rename-yaml in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit 034d0297d4ebbe7ad5ebf790e0d196e15f5f0637 Author: Daniel Gruno <[email protected]> AuthorDate: Mon Sep 6 21:35:20 2021 -0500 Rename to archiver.yaml to distinguish from the server yaml --- tools/setup.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/setup.py b/tools/setup.py index 2a10f7c..8038d11 100755 --- a/tools/setup.py +++ b/tools/setup.py @@ -346,10 +346,10 @@ if not args.noi: print("Index creation failed: %s" % e) sys.exit(1) -ponymail_cfg = "ponymail.yaml" +ponymail_cfg = "archiver.yaml" if not args.clobber and os.path.exists(ponymail_cfg): print("%s exists and clobber is not set" % ponymail_cfg) - ponymail_cfg = "ponymail.yaml.tmp" + ponymail_cfg = "archiver.yaml.tmp" print("Writing importer config (%s)" % ponymail_cfg) @@ -358,21 +358,21 @@ with open(ponymail_cfg, "w") as f: """ --- ############################################################### -# A ponymail.yaml is needed to run this project. This sample config file was +# An archiver.yaml is needed to run this project. This sample config file was # originally generated by tools/setup.py. # -# Run the tools/setup.py script and a ponymail.yaml which looks a lot like this +# Run the tools/setup.py script and an archiver.yaml which looks a lot like this # one will be generated. If, for whatever reason, that script is not working -# for you, you may use this ponymail.cfg as a starting point. +# for you, you may use this archiver.yaml as a starting point. # # Contributors should strive to keep this sample updated. One way to do this # would be to run the tools/setup.py, rename the generated config to -# ponymail.cfg.sample, and then pasting this message or a modified form of +# archiver.yaml.sample, and then pasting this message or a modified form of # this message at the top. ############################################################### ############################################################### -# Pony Mail Configuration file +# Pony Mail Archiver Configuration file # Main ES configuration
