Difference between revisions of "Open Source Software"

From Got Opinion Wiki
Jump to navigation Jump to search
Line 26: Line 26:


== Mail programs ==
== Mail programs ==
=== Sendmail ===


[http://www.sendmail.com/sm/open_source/docs/configuration_readme/ Sendmail] configuration readme
[http://www.sendmail.com/sm/open_source/docs/configuration_readme/ Sendmail] configuration readme


Confirm sendmail is installed and configured try:
Confirm sendmail is installed and configured try:
<pre># mail -s “Enter Subject” <email address></pre>
<pre># mail -s “Enter Subject” <email address></pre>
Use return key for a a new line. Enter body of message. Select enter again then CTRL+D. Check your mailbox.
Use return key for a a new line. Enter body of message. Select enter again then CTRL+D. Check your mailbox.


Line 39: Line 38:
<pre>sendmail -q -v</pre>
<pre>sendmail -q -v</pre>


The mailertable @ /etc/mail/mailertable enables you to specify the delivery agent. In my case I use SMTP so I define an SMTP server using this format:
<pre>domain_of_email.com smtp:dns.of.delivery.agent.com</pre>
Save file and restart sendmail:
<pre># service sendmail restart</pre>


<center>[[Software | To Software]]</center>
<center>[[Software | To Software]]</center>

Revision as of 07:37, 4 February 2011

Other programs

Open Source Software for Windows

Notepad++

Cobian Software Backup

PHP GED View and get help here

Blender is the free open source 3D content creation suite, available for all major operating systems under the GNU General Public License

Shutter is a feature-rich screenshot program. You can take a screenshot of a specific area, window, your whole screen, or even of a website - apply different effects to it, draw on it to highlight points, and then upload to an image hosting site, all within one window. Shutter is free, open-source, and licensed under GPL v3.

Recordmydesktop is a desktop session recorder for GNU / linux that attemps to be easy to use, yet also effective at it's primary task.

My Open Source Ticket Request System OTRS notes page

OTRS is an Open source Ticket Request System (also well known as trouble ticket system) with many features to manage customer telephone calls and e-mails. The system is built to allow your support, sales, pre-sales, billing, internal IT, helpdesk, etc. department to react quickly to inbound inquiries. Do you receive many e-mails and want to answer them with a team of agents? You're going to love the OTRS!

Notification tags on OTRS FAQ

osTicket is a widely-used open source support ticket system. It seamlessly integrates inquiries created via email, phone and web-based forms into a simple easy-to-use multi-user web interface. Manage, organize and archive all your support requests and responses in one place while providing your customers with accountability and responsiveness they deserve.

Diaspora is the privacy aware, personally controlled, do-it-all, open source social network.

Mail programs

Sendmail

Sendmail configuration readme

Confirm sendmail is installed and configured try:

# mail -s “Enter Subject” <email address>

Use return key for a a new line. Enter body of message. Select enter again then CTRL+D. Check your mailbox.

View sendmail processing messages in the queue:

sendmail -q -v

The mailertable @ /etc/mail/mailertable enables you to specify the delivery agent. In my case I use SMTP so I define an SMTP server using this format:

domain_of_email.com smtp:dns.of.delivery.agent.com

Save file and restart sendmail:

# service sendmail restart
To Software