Displaying 2 results from an estimated 2 matches for "wrinkly".
Did you mean:
wrinkle
2018 Jun 30
1
How to log a Sieve match in Dovecot debug_log
Sorry @lbutlr, this is a very silly answer to my question...!
My script is not the definite spam solution on my mail server, obviously.
In addition to Spamassassin, blacklist implementation, SPF, DKIM and more, I need to filter some specific messages with particular words and log the script action. In my first mail I made an example with three really obvious words but my need is not about sex or
2006 Apr 18
4
how would you take the duplication out of this?
i have these two really similar methods in my addressbook controller.
def edit_company
@company = Company.find(params[:id])
if request.post? and @company.update_attributes(params[:company])
flash[:notice] = ''Company was successfully edited.''
redirect_to :action => ''show'', :id => @company
end
end
def edit_person