Index: openacs-4/packages/acs-authentication/tcl/apm-callback-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/apm-callback-procs.tcl,v diff -u -N -r1.21.2.3 -r1.21.2.4 --- openacs-4/packages/acs-authentication/tcl/apm-callback-procs.tcl 14 Aug 2019 07:36:04 -0000 1.21.2.3 +++ openacs-4/packages/acs-authentication/tcl/apm-callback-procs.tcl 3 Jul 2020 07:53:44 -0000 1.21.2.4 @@ -33,7 +33,7 @@ # Register HTTP method for GetDocument auth::sync::get_doc::http::register_impl - # Register local file system method for GetDocument + # Register local filesystem method for GetDocument auth::sync::get_doc::file::register_impl # Register IMS Enterprise 1.1 ProcessDocument implementation @@ -51,7 +51,7 @@ # Unregister HTTP method for GetDocument auth::sync::get_doc::http::unregister_impl - # Unregister local file system method for GetDocument + # Unregister local filesystem method for GetDocument auth::sync::get_doc::file::unregister_impl # Unregister local authentication implementations and update the local authority Index: openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl,v diff -u -N -r1.114.2.7 -r1.114.2.8 --- openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 18 Dec 2019 16:39:25 -0000 1.114.2.7 +++ openacs-4/packages/acs-authentication/tcl/authentication-procs.tcl 3 Jul 2020 07:53:44 -0000 1.114.2.8 @@ -196,7 +196,7 @@
  • account_url: A URL to redirect the user to. Could e.g. ask the user to update his password.
  • account_message: Human-readable message about account status. Guaranteed to be set if auth_status is not ok and account_url is empty. - If non-empty, must be relayed to the user regardless of account_status. May contain HTML. + If nonempty, must be relayed to the user regardless of account_status. May contain HTML. This proc is responsible for concatenating any remote and/or local account messages into one single message which can be displayed to the user. @@ -487,18 +487,18 @@ @@ -899,18 +899,18 @@ All entries are guaranteed to always be set, but may be empty. @@ -1161,12 +1161,12 @@ @@ -1286,7 +1286,7 @@ All entries are guaranteed to always be set, but may be empty. Index: openacs-4/packages/acs-authentication/tcl/sync-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/sync-procs.tcl,v diff -u -N -r1.44.2.2 -r1.44.2.3 --- openacs-4/packages/acs-authentication/tcl/sync-procs.tcl 10 Aug 2019 15:15:49 -0000 1.44.2.2 +++ openacs-4/packages/acs-authentication/tcl/sync-procs.tcl 3 Jul 2020 07:53:44 -0000 1.44.2.3 @@ -777,7 +777,7 @@ ad_proc -private auth::sync::get_doc::file::GetDocument { parameters } { - Retrieve the document from local file system + Retrieve the document from local filesystem } { array set result { doc_status failed_to_conntect Index: openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl,v diff -u -N -r1.53.2.9 -r1.53.2.10 --- openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl 7 Feb 2020 14:51:59 -0000 1.53.2.9 +++ openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl 3 Jul 2020 07:53:44 -0000 1.53.2.10 @@ -522,7 +522,7 @@ -username $test_vars(username)] aa_equals "status ok" $password_result(password_status) "ok" - aa_true "non-empty message" {$password_result(password_message) ne ""} + aa_true "nonempty message" {$password_result(password_message) ne ""} } } Index: openacs-4/packages/acs-authentication/tcl/test/sync-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/test/sync-test-procs.tcl,v diff -u -N -r1.28.2.1 -r1.28.2.2 --- openacs-4/packages/acs-authentication/tcl/test/sync-test-procs.tcl 7 Feb 2020 16:51:26 -0000 1.28.2.1 +++ openacs-4/packages/acs-authentication/tcl/test/sync-test-procs.tcl 3 Jul 2020 07:53:44 -0000 1.28.2.2 @@ -24,7 +24,7 @@ -rollback \ -test_code { - # Start non-interactive job + # Start noninteractive job set job_id [auth::sync::job::start \ -authority_id [auth::authority::local]] @@ -72,7 +72,7 @@ aa_equals "Number of problems" $job(num_problems) 1 - aa_false "Log URL non-empty" {$job(log_url) eq ""} + aa_false "Log URL nonempty" {$job(log_url) eq ""} # Purge not deleting the job auth::sync::purge_jobs \ @@ -111,7 +111,7 @@ -rollback \ -test_code { - # Start non-interactive job + # Start noninteractive job set job_id [auth::sync::job::start -authority_id [auth::authority::local]] @@ -352,7 +352,7 @@ aa_equals "Number of problems" $job(num_problems) 2 - aa_false "Log URL non-empty" {$job(log_url) eq ""} + aa_false "Log URL nonempty" {$job(log_url) eq ""} } } @@ -376,7 +376,7 @@ -rollback \ -test_code { - # Start non-interactive job + # Start noninteractive job set job_id [auth::sync::job::start -authority_id [auth::authority::local]] @@ -503,7 +503,7 @@ aa_equals "Number of problems" $job(num_problems) 0 - aa_false "Log URL non-empty" {$job(log_url) eq ""} + aa_false "Log URL nonempty" {$job(log_url) eq ""} } } Index: openacs-4/packages/acs-authentication/www/doc/ext-auth-pam-install.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/www/doc/ext-auth-pam-install.adp,v diff -u -N -r1.4.2.1 -r1.4.2.2 --- openacs-4/packages/acs-authentication/www/doc/ext-auth-pam-install.adp 10 Aug 2019 15:15:49 -0000 1.4.2.1 +++ openacs-4/packages/acs-authentication/www/doc/ext-auth-pam-install.adp 3 Jul 2020 07:53:44 -0000 1.4.2.2 @@ -92,7 +92,7 @@

    Modify the AOLserver configuration file to use this PAM domain. Edit the line

     ns_param   PamDomain             "service0"

    So that the value of the parameter matches the name (just the -file name, not the fully pathed name) of the domain file in

    /etc/pam.d/
    +filename, not the fully pathed name) of the domain file in

    /etc/pam.d/
  • Index: openacs-4/packages/acs-authentication/www/doc/ext-auth-pam-install.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/www/doc/ext-auth-pam-install.html,v diff -u -N -r1.6.2.1 -r1.6.2.2 --- openacs-4/packages/acs-authentication/www/doc/ext-auth-pam-install.html 10 Aug 2019 15:15:49 -0000 1.6.2.1 +++ openacs-4/packages/acs-authentication/www/doc/ext-auth-pam-install.html 3 Jul 2020 07:53:44 -0000 1.6.2.2 @@ -59,7 +59,7 @@ /etc/pam.d/service0 with these contents:

    auth       sufficient   /lib/security/pam_radius_auth.so
     
  • Modify the AOLserver configuration file to use - this PAM domain. Edit the line

    ns_param   PamDomain             "service0"

    So that the value of the parameter matches the name (just the file name, not the fully pathed name) of the domain file in

    /etc/pam.d/
  • LDAP in PAM. more information

  • Modify the AOLserver configuration file to support ns_pam. 

    In + this PAM domain. Edit the line

    ns_param   PamDomain             "service0"

    So that the value of the parameter matches the name (just the filename, not the fully pathed name) of the domain file in

    /etc/pam.d/
  • LDAP in PAM. more information

  • Modify the AOLserver configuration file to support ns_pam. 

    In /var/lib/aolserver/service0/etc/config.tcl, enable the nspam module by uncommenting this line:

    ns_param   nspam           ${bindir}/nspam.so
  • Install auth-pam OpenACS service package. Install auth-pam and restart the server.

  • Create an OpenACS authority. OpenACS supports multiple authentication authorities. The OpenACS server itself is the "Local Authority," used by default.

    1. Browse to the authentication administration page, Index: openacs-4/packages/acs-developer-support/lib/toolbar.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-developer-support/lib/toolbar.adp,v diff -u -N -r1.22 -r1.22.2.1 --- openacs-4/packages/acs-developer-support/lib/toolbar.adp 15 Sep 2017 07:04:40 -0000 1.22 +++ openacs-4/packages/acs-developer-support/lib/toolbar.adp 3 Jul 2020 07:53:44 -0000 1.22.2.1 @@ -37,7 +37,7 @@ |

    2. API doc
    3. | -
    4. XoTcl
    5. +
    6. XOTcl
    7. |
    8. Requests
    9. Index: openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl,v diff -u -N -r1.60.2.5 -r1.60.2.6 --- openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl 6 Sep 2019 15:58:06 -0000 1.60.2.5 +++ openacs-4/packages/acs-lang/tcl/lang-catalog-procs.tcl 3 Jul 2020 07:53:44 -0000 1.60.2.6 @@ -630,7 +630,7 @@ messages for the merge is the messages in the db from the last time db and catalog file were in sync for the corresponding message key. The first such sync point is the initial import of a message. After that, any export of messages to - the file system will be a sync point. Also, after an upgrade, a large number + the filesystem will be a sync point. Also, after an upgrade, a large number of the resulting messages in the db will be identical to those in the file (the file messages take precedence on conflict) and those messages will also be sync points. A message being in sync between db and file is indicated by the lang_message.sync_time Index: openacs-4/packages/acs-lang/tcl/localization-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/tcl/localization-procs.tcl,v diff -u -N -r1.29.2.12 -r1.29.2.13 --- openacs-4/packages/acs-lang/tcl/localization-procs.tcl 18 May 2020 21:20:20 -0000 1.29.2.12 +++ openacs-4/packages/acs-lang/tcl/localization-procs.tcl 3 Jul 2020 07:53:44 -0000 1.29.2.13 @@ -520,7 +520,7 @@ using the OpenACS timezone setting and user's preference @param time_value Timestamp from conn input in the ISO datetime format. - @return Timestamp in the database's time zone, also in ISO datetime format. + @return Timestamp in the database's timezone, also in ISO datetime format. } { if { ![ad_conn isconnected] } { return $time_value @@ -629,7 +629,7 @@ {-standard "decimal"} } { - Transforms data size, provided in non-negative bytes, to KB, MB... up to YB. + Transforms data size, provided in nonnegative bytes, to KB, MB... up to YB. @param size Size in bytes @param precision Numbers in the fractional part Index: openacs-4/packages/acs-lang/tcl/test/acs-lang-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/tcl/test/acs-lang-test-procs.tcl,v diff -u -N -r1.28.2.10 -r1.28.2.11 --- openacs-4/packages/acs-lang/tcl/test/acs-lang-test-procs.tcl 29 Nov 2019 11:12:34 -0000 1.28.2.10 +++ openacs-4/packages/acs-lang/tcl/test/acs-lang-test-procs.tcl 3 Jul 2020 07:53:44 -0000 1.28.2.11 @@ -1049,7 +1049,7 @@ @author Peter Marklund } { - # Create the test package in the file system + # Create the test package in the filesystem lang::test::setup_test_package # Can't run this test case with the usual rollback switch since if everything Index: openacs-4/packages/acs-lang/www/admin/export-locale-to-files.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/www/admin/export-locale-to-files.tcl,v diff -u -N -r1.3.2.1 -r1.3.2.2 --- openacs-4/packages/acs-lang/www/admin/export-locale-to-files.tcl 20 Dec 2019 21:47:58 -0000 1.3.2.1 +++ openacs-4/packages/acs-lang/www/admin/export-locale-to-files.tcl 3 Jul 2020 07:53:44 -0000 1.3.2.2 @@ -1,6 +1,6 @@ ad_page_contract { Export all catalog messages for a given locale to - the file system. + the filesystem. @author Lars Pind (lars@collaboraid.biz) } { Index: openacs-4/packages/acs-lang/www/admin/import-locale-from-files.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/www/admin/import-locale-from-files.tcl,v diff -u -N -r1.5.2.1 -r1.5.2.2 --- openacs-4/packages/acs-lang/www/admin/import-locale-from-files.tcl 20 Dec 2019 21:47:58 -0000 1.5.2.1 +++ openacs-4/packages/acs-lang/www/admin/import-locale-from-files.tcl 3 Jul 2020 07:53:44 -0000 1.5.2.2 @@ -1,6 +1,6 @@ ad_page_contract { Import all catalog messages for a given locale from - the file system. Should typically only be done once + the filesystem. Should typically only be done once as it may overwrite translations already in the database for the given locale. Index: openacs-4/packages/acs-lang/www/doc/i18n-design.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/www/doc/i18n-design.adp,v diff -u -N -r1.7.2.2 -r1.7.2.3 --- openacs-4/packages/acs-lang/www/doc/i18n-design.adp 10 Aug 2019 15:10:51 -0000 1.7.2.2 +++ openacs-4/packages/acs-lang/www/doc/i18n-design.adp 3 Jul 2020 07:53:44 -0000 1.7.2.3 @@ -56,12 +56,12 @@ Java Locale API there is an optional variant which can be added to a locale, which we will omit in the Tcl API.

      The language is a valid ISO Language -Code. These codes are the lower-case two-letter codes as +Code. These codes are the lowercase two-letter codes as defined by ISO-639. You can find a full list of these codes at a number of sites, such as:
      http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt

      The country is a valid ISO Country -Code. These codes are the upper-case two-letter codes as +Code. These codes are the uppercase two-letter codes as defined by ISO-3166. You can find a full list of these codes at a number of sites, such as:
      http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html

      @@ -445,7 +445,7 @@ Is used to load the message catalogs for a package. The catalog files are stored in a package subdirectory called catalog -. Their file names have the form +. Their filenames have the form *.encoding.cat , where encoding is the Index: openacs-4/packages/acs-lang/www/doc/i18n-design.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/www/doc/i18n-design.html,v diff -u -N -r1.8.2.1 -r1.8.2.2 --- openacs-4/packages/acs-lang/www/doc/i18n-design.html 10 Aug 2019 15:10:51 -0000 1.8.2.1 +++ openacs-4/packages/acs-lang/www/doc/i18n-design.html 3 Jul 2020 07:53:44 -0000 1.8.2.2 @@ -92,13 +92,13 @@

      The language is a valid ISO Language Code. These codes are the -lower-case two-letter codes as defined by ISO-639. You can find a full +lowercase two-letter codes as defined by ISO-639. You can find a full list of these codes at a number of sites, such as:
      http://www.ics.uci.edu/pub/ietf/http/related/iso639.txt

      -The country is a valid ISO Country Code. These codes are the upper-case two-letter codes as defined by ISO-3166. You can find a full list of these codes at a number of sites, such as: +The country is a valid ISO Country Code. These codes are the uppercase two-letter codes as defined by ISO-3166. You can find a full list of these codes at a number of sites, such as:
      http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html

      @@ -586,7 +586,7 @@ Is used to load the message catalogs for a package. The catalog files are stored in a package subdirectory called catalog. Their -file names have the form *.encoding.cat, where encoding +filenames have the form *.encoding.cat, where encoding is the name of a MIME charset encoding (not a Tcl charset name as was used in a previous version of this command). Index: openacs-4/packages/acs-lang/www/doc/i18n-requirements.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/www/doc/i18n-requirements.adp,v diff -u -N -r1.5 -r1.5.2.1 --- openacs-4/packages/acs-lang/www/doc/i18n-requirements.adp 30 Apr 2018 08:19:34 -0000 1.5 +++ openacs-4/packages/acs-lang/www/doc/i18n-requirements.adp 3 Jul 2020 07:53:44 -0000 1.5.2.1 @@ -363,23 +363,22 @@

      VI.G Time Zones

      90.10 Provide API support for -specifying a time zone +specifying a timezone

      90.20 Provide an API for computing time and date operations which are aware of timezones. So for example a calendar module can properly synchronize items inserted into a -calendar from users in different time zones using their own local +calendar from users in different timezones using their own local times.

      90.30 Store all dates and times in universal -time zone, UTC.

      -90.40 For a registered users, a time zone +timezone, UTC.

      +90.40 For a registered users, a timezone preference should be stored.

      -90.50 For a non-registered user a time zone +90.50 For a non-registered user a timezone preference should be attached via a session or else UTC should be used to display every date and time.

      90.60 The default if we can't determine a -time zone is to display all dates and times in some universal time -zone such as GMT.

      +timezone is to display all dates and times in some universal timezone such as GMT.

      VI.H Database

      Index: openacs-4/packages/acs-lang/www/doc/i18n-requirements.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-lang/www/doc/i18n-requirements.html,v diff -u -N -r1.5 -r1.5.2.1 --- openacs-4/packages/acs-lang/www/doc/i18n-requirements.html 29 Dec 2017 10:51:45 -0000 1.5 +++ openacs-4/packages/acs-lang/www/doc/i18n-requirements.html 3 Jul 2020 07:53:44 -0000 1.5.2.1 @@ -388,21 +388,20 @@ supported language.

      VI.G Time Zones

      -
      90.10 Provide API support for specifying a time -zone +
      90.10 Provide API support for specifying a timezone

      90.20 Provide an API for computing time and date operations which are aware of timezones. So for example a calendar module can properly synchronize items inserted into a calendar from -users in different time zones using their own local times.

      -

      90.30 Store all dates and times in universal time zone, +users in different timezones using their own local times.

      +

      90.30 Store all dates and times in universal timezone, UTC.

      -

      90.40 For a registered users, a time zone preference +

      90.40 For a registered users, a timezone preference should be stored.

      -

      90.50 For a non-registered user a time zone preference +

      90.50 For a non-registered user a timezone preference should be attached via a session or else UTC should be used to display every date and time.

      -

      90.60 The default if we can't determine a time zone is to -display all dates and times in some universal time zone such as +

      90.60 The default if we can't determine a timezone is to +display all dates and times in some universal timezone such as GMT.

      VI.H Database

      Index: openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl,v diff -u -N -r1.30 -r1.30.2.1 --- openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl 15 Aug 2018 16:24:28 -0000 1.30 +++ openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-callback-procs.tcl 3 Jul 2020 07:53:44 -0000 1.30.2.1 @@ -194,7 +194,7 @@ # Values default to empty string. # headers_arr is an array of header values indexed by header name. - # header names are in original upper and lower case, which may + # header names are in original uppercase and lowercase, which may # have some significance in filtering cases. Although case should # should not be relied on for obtaining a value. # Some header indexes are created by ACS Mail Lite procs during Index: openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl,v diff -u -N -r1.108.2.8 -r1.108.2.9 --- openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl 18 May 2020 20:57:50 -0000 1.108.2.8 +++ openacs-4/packages/acs-mail-lite/tcl/acs-mail-lite-procs.tcl 3 Jul 2020 07:53:44 -0000 1.108.2.9 @@ -636,7 +636,7 @@ set filesystem_attachments_root [ad_tmpdir] } foreach f $filesystem_files { - # make the file name absolute + # make the filename absolute if {[file pathtype $f] ne "absolute"} { set f [file join [pwd] $f] } Index: openacs-4/packages/acs-mail-lite/tcl/email-inbound-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/tcl/email-inbound-procs.tcl,v diff -u -N -r1.15.2.7 -r1.15.2.8 --- openacs-4/packages/acs-mail-lite/tcl/email-inbound-procs.tcl 29 Nov 2019 11:12:34 -0000 1.15.2.7 +++ openacs-4/packages/acs-mail-lite/tcl/email-inbound-procs.tcl 3 Jul 2020 07:53:44 -0000 1.15.2.8 @@ -445,7 +445,7 @@ ns_log Dev "inbound_prioritize: range '${range}' d_max '${d_max}' mp '${mp}'" # number of variables in fine granularity calcs: - # char_size, date time stamp + # char_size, date timestamp set varnum 2 # Get most recent scan start time for reference to batch present time set start_cs [nsv_get acs_mail_lite si_start_t_cs] @@ -720,7 +720,7 @@ append dti "+" } else { # Comment from panda-imap/src/c-client/mail.h: - # /* non-zero if west of UTC */ + # /* nonzero if west of UTC */ # See also discussion beginning with: # /* occidental *from Greenwich) timezones */ # in panda-imap/src/c-client/mail.c Index: openacs-4/packages/acs-mail-lite/tcl/legacy-inbound-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/tcl/legacy-inbound-procs.tcl,v diff -u -N -r1.2.2.3 -r1.2.2.4 --- openacs-4/packages/acs-mail-lite/tcl/legacy-inbound-procs.tcl 5 Apr 2020 11:41:09 -0000 1.2.2.3 +++ openacs-4/packages/acs-mail-lite/tcl/legacy-inbound-procs.tcl 3 Jul 2020 07:53:44 -0000 1.2.2.4 @@ -69,7 +69,7 @@ ns_log Debug "load_mails: opening $msg" array set email {} - # This will parse the E-mail and extract the files to the file system + # This will parse the E-mail and extract the files to the filesystem parse_email -file $msg -array email set email(to) [parse_email_address -email $email(to)] @@ -124,7 +124,7 @@ files lists and all headers directly. The headers consists of a list with header names as keys and - their corresponding values. All keys are lower case. The + their corresponding values. All keys are lowercase. The bodies consists of a list with two elements: content-type and content. The files consists of a list with three elements: content-type, filename and content. Index: openacs-4/packages/acs-mail-lite/www/doc/incoming-email-legacy-notes.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/www/doc/incoming-email-legacy-notes.adp,v diff -u -N -r1.4.2.3 -r1.4.2.4 --- openacs-4/packages/acs-mail-lite/www/doc/incoming-email-legacy-notes.adp 21 Nov 2019 19:08:47 -0000 1.4.2.3 +++ openacs-4/packages/acs-mail-lite/www/doc/incoming-email-legacy-notes.adp 3 Jul 2020 07:53:44 -0000 1.4.2.4 @@ -52,7 +52,7 @@

      The headers consists of a list with header names as keys and their corresponding values. - All keys are lower case. + All keys are lowercase.

      @@ -156,7 +156,7 @@ foreach part $all_parts { # Attachments have a "Content-disposition" part - # Therefore we filter out if it is an attachment here + # Therefore, we filter out if it is an attachment here if {[catch {mime::getheader $part Content-disposition}]} { switch [mime::getproperty $part content] { "text/plain" { @@ -191,7 +191,7 @@

      - Note that the files ie attachments are actually stored in the /tmp directory from where they can be processed further. + Note that the files i.e. attachments are actually stored in the /tmp directory from where they can be processed further. It is up to the callback to decide if to import the file into OpenACS or not. Once all callbacks have been fired files in /tmp will have to be deleted again though.

      @@ -487,7 +487,7 @@
      • ${component_name}-bugs@openacs.org (where component_name could be openacs or dotlrn or contacts or whatever), to store a new bug in bug-tracker.
      • -
      • username@openacs.org (to do mail-through using the user name, which allows you to hide the actual e-mail of the user whom you are contacting).
      • +
      • username@openacs.org (to do mail-through using the username, which allows you to hide the actual e-mail of the user whom you are contacting).

      Cleanup