removed reference to CLOUD_BASE in variables
authorFred T. Hamster <fred@gruntose.com>
Fri, 31 Jan 2025 16:13:26 +0000 (11:13 -0500)
committerFred T. Hamster <fred@gruntose.com>
Fri, 31 Jan 2025 16:13:26 +0000 (11:13 -0500)
need to figure out a nicer way of using CLOUD_BASE
in scripts like move spams, so there can be a generalized
thing that anyone could use, instead of it depending on my specific cloud
structure.

scripts/core/variables.sh
scripts/email/move_spams_and_check.sh

index 918332924c257c2b5e4bcdaece4b51a26e34ec59..8a7a5fae3d56172723ac7b20d2c3ebafc21f90f5 100644 (file)
@@ -334,11 +334,6 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org
   
   ##############
 
-  # logged historical file where we append our latest report.
-#  define_yeti_variable FRED_HAMSTER_OVERLOAD_REPORT_FILE="$CLOUD_BASE/stats/overload_history.txt"
-
-  ##############
-
   # set the SHUNIT_PATH so our shunit tests can find the codebase.
   define_yeti_variable SHUNIT_PATH="$FEISTY_MEOW_SCRIPTS/testkit/shunit"
   
index 0c66a77ba8aaec3b3dff38ba4b5c11449feb63c8..437d04d902594245ecb0f8185af15ff0b5f8fc22 100644 (file)
@@ -12,9 +12,12 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
 SPAM_SPOOL="/var/spool/sa-exim"
 # a temporary directory where we'll move all the spam for analysis.
 SPAM_HOLD="$HOME/spamcrud"
+
 # the white list needs to be a file of good email addresses that will
 # probably never send spam.  it should be formatted one address to a line.
 EMAIL_WHITE_LIST="$CLOUD_BASE/magic_cabinet/lists/email_addresses.txt"
+#hmmm: very personal and specific location for that file!!!
+
 # we'll save a report of the spam checks in the file below.
 REPORT_FILE="$HOME/spam_check_report_$(date_stringer).txt"