Modify

Opened 17 years ago

Closed 8 years ago

#1187 closed enhancement (wontfix)

Send Reminders to all existing trac-users

Reported by: anonymous Owned by: zerodeux
Priority: normal Component: TracReminderScript
Severity: normal Keywords:
Cc: Trac Release: 0.10

Description

I have implemented it already at my script. If you find it usefull you can integrate it into your script. Adapted sqlite to sqlite3.

28a29
>   echo "Send to all trac-users: $0 <trac-path> --trac-users"
36c37
< tickets=`sqlite "$db" "select id,owner,status,summary from ticket where status='new' order by id desc"`
---
> tickets=`sqlite3 "$db" "select id,owner,status,summary from ticket where status='new' order by id desc"`
49c50
< # Send news. Properly fill in RFC 822 fields (especially To and Cc).
---
> 
50a52
> # Send news. Properly fill in RFC 822 fields (especially To and Cc).
51a54,62
> 
> # J. Erik Heinz: 2007-02-07
> # Get email adresses of all trac-users from the system 
> # Usage with option: --trac-users
> if test "$1" == '--trac-users'; then
>       emails=`sqlite3 "$db" "select var_value from session where var_name='email'"`
>       all=`echo $emails | sed -e 's/,/ /g'`
> fi
> 

Cheers -- Erik

Attachments (0)

Change History (1)

comment:1 Changed 8 years ago by Ryan J Ollos

Resolution: wontfix
Status: newclosed

Deprecated plugin has been removed.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain zerodeux.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.