LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 02-10-2013, 03:25 PM   #1
akamel
Member
 
Registered: Dec 2012
Posts: 100

Rep: Reputation: 1
Summarizer project


Dear all,

Earlier I had a plan to learn web development to implement a webpage that would help send our shift summaries daily for all team members (emails template)

Did anyone tried any open source or something close to this idea ?

Appreciate your attention.
 
Old 02-11-2013, 01:08 PM   #2
akamel
Member
 
Registered: Dec 2012
Posts: 100

Original Poster
Rep: Reputation: 1
Any thoughts please?
 
Old 02-11-2013, 02:03 PM   #3
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,632

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by akamel View Post
Any thoughts please?
Don't bump your own thread...all you succeeded in doing is removing it from the zero-reply list, making it LESS VISIBLE and LESS LIKELY to be answered.

And your question is not clear...you want to learn web development, to send emails?? Why? And without knowing where the originating data is coming from, what version/distro of Linux you're using, and any other details, what do you expect people to be able to tell you? You can very easily write a shell script to pull data from a database and email it out, you can use perl, ruby, or php do to it also. You can feed it a document, or search/replace an existing template. There are also MANY mailing-list managers you can use/find...but again, you don't provide details.
 
Old 02-11-2013, 02:21 PM   #4
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,220

Rep: Reputation: 5319Reputation: 5319Reputation: 5319Reputation: 5319Reputation: 5319Reputation: 5319Reputation: 5319Reputation: 5319Reputation: 5319Reputation: 5319Reputation: 5319
Why would you have the website mail out this information? Put the information on the website so that the team members can just load it and see it.
 
Old 02-11-2013, 02:26 PM   #5
akamel
Member
 
Registered: Dec 2012
Posts: 100

Original Poster
Rep: Reputation: 1
Just to read some important points before the next shift.
 
Old 02-11-2013, 04:10 PM   #6
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,632

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by akamel View Post
Just to read some important points before the next shift.
Ok, so my original questions stand:
  • Why learn web programming to send emails?
  • Where is the originating data coming from?
  • Version/distro of Linux?
Again, simple scripts can do this, with no need for any sort of web interface. And as dugan pointed out...if you've got a webpage, leave the info on it for folks to check. If they're checking an email anyway, that says they already have access to a computer/device to access it, so pulling up a webpage isn't going to be tough.
 
Old 02-12-2013, 01:43 AM   #7
akamel
Member
 
Registered: Dec 2012
Posts: 100

Original Poster
Rep: Reputation: 1
Thanks very much for your reply. Let me describe what I really looking for in the below points:

1. Better than writing an email with all that happened in the shift throughout the day, to make a template and everyone put his points, and it can be automatically sent over to the whole team @ 12 GMT for example.

2. I don't want to spend time to study php or perl to do this job, so I'm looking for open source to deploy on CentOS server.

3. Bash scripts would help I know, but it's better to make it @ web interface to everyone can edit/add his points.

Hope it's now clear!

Appreciate your time
 
Old 02-12-2013, 08:52 AM   #8
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,632

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by akamel View Post
Thanks very much for your reply. Let me describe what I really looking for in the below points:
  1. Better than writing an email with all that happened in the shift throughout the day, to make a template and everyone put his points, and it can be automatically sent over to the whole team @ 12 GMT for example.
  2. I don't want to spend time to study php or perl to do this job, so I'm looking for open source to deploy on CentOS server.
  3. Bash scripts would help I know, but it's better to make it @ web interface to everyone can edit/add his points.
Hope it's now clear!
Based on what you posted, it's overkill for what you're looking for. Point by point:
  1. If people just send an email to a specific address, you can EASILY have a small bash script forward all those messages to a distribution list, giving you all the details, without people having to log into a website, enter stuff, save it, and have another program pull it all out to send it along.
  2. If you don't want to spend any time learning things you don't already know, then stop now. There is NEVER going to be an open-source solution that does EXACTLY what you want to do, EXACTLY the way you want to do it, without modifying it. There aren't going to be any pay-for applications like that either.
  3. Again, what you're saying is that all your people have access to a web capable device...which says they also have access to email. Think about this for a second. If they're using smartphones, you're wanting them to log into a web page on a tiny screen, log in, and enter stuff into a web form...so you can send an email?? Why not use the built-in email client (which will most CERTAINLY be easier to use), to send an email to a specific address? If they have access to a computer, email is still easier to send than navigating through a web interface, and won't be dependent on any browser settings, firewalls, proxy servers, etc.
Again, a very simple script could be EASILY written to grab the contents of that users maildir file, and forward it to a distribution list. That's all you need. If you want to use an existing system, then you need to be prepared to look for a good while for something that even remotely does what you want, then spend time with PHP/Javascript/perl/ruby/whatever-its-written-in, to modify it to do what you want. Or spend a few minutes writing a simple bash script, and putting it in CRON. Your choice.
 
Old 02-12-2013, 09:23 AM   #9
akamel
Member
 
Registered: Dec 2012
Posts: 100

Original Poster
Rep: Reputation: 1
Thank you!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Apple kills a Kickstarter project: Portable power project POP refunding $139,170 to backers LXer Syndicated Linux News 0 12-23-2012 06:41 AM
LXer: Condensing with Open Text Summarizer LXer Syndicated Linux News 0 10-01-2012 08:33 PM
[SOLVED] How to store all files related to a c++ project and build in linux. Like project dir sharanlinux Programming 1 04-29-2010 06:52 AM
LXer: Condensing with Open Text Summarizer LXer Syndicated Linux News 0 12-16-2008 02:20 AM
Beginning a big project - Need an Good Project Manager gamehack Programming 3 01-15-2004 11:49 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 04:04 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration