• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Report Bad Post option?

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there a feature where users can report a potentially bad post (e.g. spam or abuse) so the moderators/admin can take care of it?
[originally posted on jforum.net by jmorgan]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

jmorgan wrote:Is there a feature where users can report a potentially bad post (e.g. spam or abuse) so the moderators/admin can take care of it?



I also need this future , is this posible with jforum or not?
[originally posted on jforum.net by ElCucoArg]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There's no "automated" way to do this. But it wouldn't be hard to modify the templates to have a mailto: link with the post URL or direct it to a form that would do this.
[originally posted on jforum.net by monroe]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thakns ... i was thinking in puting it there...

[originally posted on jforum.net by ElCucoArg]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm kind of new at this... , i found the template where this should be modified but i dont know how i should do it. If u could help me giving me the general idea i would be thankful
[originally posted on jforum.net by ElCucoArg]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Templates are basically HTML with some Freemarker script (that is readable even if you don't know Freemarker). If you haven't found it, the best place might be the post_show_action_buttons_inc.htm file which displays the subject line, etc.

The quickest way is to do a mailto: link on the page. Something like:



When clicked the user should have an e-mail message opened up in his PC with the Subject line being a URL to the post in question.

Alternatively, you could use something like JFormMail with is a Servlet that takes the output of a form and turns it into an e-mail. That way you could have the link point to a form that specified the specific info you want.
[originally posted on jforum.net by monroe]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic