-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflict in bash/pkglibexec/Makefile.am caused by renaming from bash/Makefile.am. Resolved. Signed-off-by: Mark Grant <[email protected]>
- Loading branch information
Showing
13 changed files
with
290 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
NAME | ||
evolution-clamavd.sh - Scan incoming mail in evolution with the clamav daemon | ||
evolution-clamav-scripts-location - A script location finding helper script | ||
SYNOPSIS | ||
evolution-clamavd.sh [OPTION] | ||
evolution-clamav-scripts-location [{-h|-V}] | ||
evolution-clamav-scripts-location [OPTIONS] | ||
DESCRIPTION | ||
The script is designed to be a filter in evolution getting input on stdin and | ||
using the clamav daemon to scan for viruses. | ||
A helper script which merely outputs the location of the evolution-clamav | ||
scripts to stdout. | ||
|
||
OPTIONS | ||
-h, --help prints usage information. | ||
-h, --help prints usage information | ||
|
||
-V, --version prints version information | ||
EXIT STATUS | ||
0 - Success | ||
|
||
1 - General failure | ||
|
||
64 - Error in command line | ||
|
||
.br | ||
1 - General error | ||
.br | ||
64 - Command line usage error | ||
AUTHOR | ||
Written by Mark Grant. | ||
REPORTING BUGS | ||
Report bugs to <[email protected]> | ||
COPYRIGHT | ||
Copyright (C) 2020, 2021 Mark Grant. | ||
Copyright (C) 2023 Mark Grant. | ||
.br | ||
License GPLv3: GNU GPL version 3 only | ||
.br | ||
|
@@ -31,5 +32,4 @@ This is free software: you are free to change and redistribute it. | |
.br | ||
There is NO WARRANTY, to the extent permitted by law. | ||
SEE ALSO | ||
evolution-clamav.sh clamscan-notify.sh | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
######################################################################### | ||
# # | ||
# Author: Copyright (C) 2020, 2021, 2023 Mark Grant # | ||
# # | ||
# Released under the GPLv3 only. # | ||
# SPDX-License-Identifier: GPL-3.0-only # | ||
# # | ||
# Purpose: # | ||
# Automake script file to generate evolution-clamav bindir scripts from # | ||
# source. # | ||
# # | ||
######################################################################### | ||
|
||
|
||
evolution-clamav-scripts-location: Makefile | ||
mkdir -p $(@D) | ||
rm -f $@ $@.tmp | ||
test -f ./$@.in || srcdir=$(srcdir)/; \ | ||
$(edit) $${srcdir}$(@F).sh.in > $@.tmp | ||
mv $@.tmp $@ | ||
chmod a+x $@ | ||
evolution-clamav-scripts-location: \ | ||
$(srcdir)/evolution-clamav-scripts-location.sh.in | ||
|
||
bin_SCRIPTS = evolution-clamav-scripts-location | ||
|
||
|
||
EXTRA_DIST = $(srcdir)/evolution-clamav-scripts-location.sh.in | ||
|
||
|
||
CLEANFILES = *.tmp evolution-clamav-scripts-location | ||
|
Oops, something went wrong.