Sympa Installation Howto Stefano Brivio [email protected]

Total Page:16

File Type:pdf, Size:1020Kb

Sympa Installation Howto Stefano Brivio St3@Riseup.Net Sympa installation howto Stefano Brivio [email protected] Riccardo Setti [email protected] Diario delle Revisioni Revisione 1.0.0 2005/08/14 1.0.0 Sympa integration with Kolab groupware HOWTO 1. Abstract In this how-to we will go through the steps needed to install and configure the Sympa mailing list in order to provide integration with the Kolab Groupware Project, using OpenLDAP for distribution lists and authentication, MySQL for storing Sympa accounts and Postfix as MTA. 2. Sympa installation This how-to refers to 5.1 version of Sympa which is downloadable from www.sympa.org. As an OpenPKG package is still unavailable you will need to install it from source. wget http://www.sympa.org/distribution/sympa-5.1.tar.gz With this command you download just the manager itself, without its dependencies (mostly Perl classes), listed here: 1 Sympa installation howto • DBI wget http://search.cpan.org/CPAN/authors/id/T/TI/TIMB/DBI-1.48.tar.gz • DBD-mysql-3.0002 wget http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/DBD-mysql-3.0002.tar.gz • MHonArc-2.6.15 wget http://search.cpan.org/CPAN/authors/id/E/EH/EHOOD/MHonArc-2.6.15.tar.gz • libintl-perl-1.14 wget http://search.cpan.org/CPAN/authors/id/G/GU/GUIDO/libintl-perl-1.14.tar.gz • XML-LibXML-Common-0.13 wget http://search.cpan.org/CPAN/authors/id/P/PH/PHISH/XML-LibXML-Common-0.13.tar.gz • XML-LibXML-1.58 wget http://search.cpan.org/CPAN/authors/id/P/PH/PHISH/XML-LibXML-1.58.tar.gz • perl-ldap-0.3202 wget http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/perl-ldap-0.33.tar.gz • Template-Toolkit-2.14 wget http://www.cpan.org/modules/by-module/Template/Template-Toolkit-2.14.tar.gz • CGI::FAST class wget http://search.cpan.org/CPAN/authors/id/L/LD/LDS/CGI.pm-3.11.tar.gz To download the classes needed by Sympa you can proceed in two ways: by downloading them manually from CPAN or through the CPAN shell. 2 Sympa installation howto Let’s now decompress the Perl classes. In every directory you have to issue these commands: eval ‘/kolab/bin/openpkg rc --eval all env‘ to set the environment variables according to OpenPKG system; wget ftp://ftp.openpkg.org/release/2.4/SRC/mysql-4.1.12-2.4.0.src.rpm /kolab/bin/openpkg rpm --rebuild mysql-4.1.12-2.4.0.src.rpm /kolab/bin/openpkg rpm -Uvh /kolab/RPM/PKG/mysql-4.1.12-2.4.0.ix86-debian3.1-kolab.rpm /kolab/etc/rc mysql start /kolab/bin/mysqladmin -u root password ’what_you_want’ tar xzf DBI-1.48.tar.gz cd DBI-1.48 perl Makefile.pm make make install tar xzf DBD-mysql-3.0002.tar.gz cd DBD-mysql-3.0002 perl Makefile.pm make make install tar xzf MHonArc-2.6.15.tar.gz cd MHonArc-2.6.15 perl Makefile.PL make make install tar xzf libintl-perl-1.14.tar.gz cd libintl-perl-1.14 perl Makefile.PL make make install tar xzf perl-ldap-0.33.tar.gz perl Makefile.PL make make install tar xzf Template-Toolkit-2.14.tar.gz cd Template-Toolkit-2.14 perl Makefile.PL (answer yes by all questions it should go) make make install tar xzf XML-LibXML-Common-0.13.tar.gz cd XML-LibXML-Common-0.13 perl Makefile.PL make make install tar xvf XML-LibXML-1.58.tar.gz cd XML-LibXML-1.58 3 Sympa installation howto perl Makefile.PL make make install tar xzf CGI.pm-3.11.tar.gz cd CGI.pm-3.11 perl Makefile.PL make make install finally: wget http://www.sympa.org/distribution/sympa-5.1.tar.gz Let’s now decompress the Sympa distribution archive this way: tar xzf sympa-5.1.tar.gz Now cd into ‘sympa’ and copy inside it the configure-sympa.opts file that we provide in < Appendix A You are now ready to properly configure and install Sympa: touch /kolab/etc/postfix/aliases ./configure-sympa.opts make make install configure-sympa.opts file provides the switches needed to configure Sympa with the correct paths according to OpenPKG default locations. 3. Sympa general configuration Once you are done with Sympa installation, you can set the general options for Sympa (/kolab/etc/sympa/sympa.conf). The variables that need to be changed to obtain a working environment are (a sample configuration file can be found in Appendix B): vim /kolab/etc/sympa/sympa.conf • line 45: domain kolab-ei.khamsa.c • line 48: listmaster [user@domain] • line 106: sendmail /kolab/sbin/sendmail • line 149: db_type mysql • line 152: db_name sympa • line 155: db_host localhost • line 158: db_user sympa • line 162: db_passwd [password] • line 192: css_url http://[URL]/sympa/css/ css_url isn’t present by default and must be set to the URL of CSS files. For more detailed information about graphical customization, see Appendix G. The remaining options are commented in sympa.conf. See Appendix J for notes about multi-domain configuration. 4 Sympa installation howto 4. MySQL setup Listed below there are the commands to be issued in order to set up the database needed by Sympa: mysqladmin -uroot -p create sympa mysql -uroot -p mysql> grant all on sympa.* to sympa@localhost identified by ’[password]; mysql> flush privileges; mysql> quit 5. Apache CGI setup Create a new file in /kolab/etc/apache called apache.sympa: (provided in Appendix C ) vim /kolab/etc/apache/apache.sympa Alias /wwsicons /kolab/share/sympa/icons ScriptAlias /wws /kolab/var/kolab/www/cgi-bin/wwsympa.fcgi AddHandler cgi-script .fcgi You must include this file in /kolab/etc/apache/apache.conf, inserting a line like this at the end: (this file is regenerated every time OpenPKG system gets restarted! You’d better be using a modified template as provided in Appendix I) vim /kolab/etc/kolab/templates/httpd.conf Include /kolab/etc/apache/apache.sympa at the end of the file. Then: kolabconf 6. Postfix Configuration To get Sympa working with postfix the following files need to be changed (template files are provided in Appendix D): • master.cf • main.cf • virtual_regexp • transport_regexp virtual_regexp and transport_regexp need to be created if they don’t exist. The two files are used by Postfix to parse the addresses and thus create the transport tables. transport_regexp includes the regexps 5 Sympa installation howto to tell if the mail is addressed to the list owner or to the list itself and to choose the right rule in master.cf . For every list, transport rules need to be created. The rules should look like t hese (change according to your hostname): 6.1. transport_regexp vim /kolab/etc/postfix/transport_regexp /^.*+owner\@YOUR\.DOMAIN\.TLD$/ sympabounce: /^.*\@YOUR\.DOMAIN\.TLD$/ sympa: 6.1.1. virtual_regexp Then you need to add a line to virtual_regexp for every list. This line is needed to find the owner’s name and to create the virtual address (again, you need to change it according to the hostname): vim /kolab/etc/postfix/virtual_regepx /^(.*)-owner\@YOUR\.DOMAIN\.TLD$/ [email protected]. 6.1.1.1. main.cf master.cf Then you have to change some lines in main.cf. Use the lines in main.cf.template to change the lines in main.cf with the same line numbers in /kolab/etc/kolab/templates. Then just restart Postfix. vim /kolab/etc/kolab/templates/main.cf 58 transport_maps = hash:/kolab/etc/postfix/transport, ldap:/kolab/etc/postfix/ldaptransport.cf, regexp:/kolab/etc/postfix/transport_regex 62 virtual_alias_maps= regexp:/kolab/etc/postfix/virtual_regexp 63 local_recipient_maps = $alias_maps 64 sympa_destination_recipient_limit = 1 65 sympabounce_destination_recipient_limit = 1 vim /kolab/etc/kolab/templates/master.cf add the following lines at the end of the file. master.cf.template: 112 sympa unix - n n - - pipe flags=R user=kolab-n argv=/kolab/lib/sympa queue ${recipient} sympabounce unix - n n - - pipe flags=R user=kolab-n argv=/kolab/lib/sympa bouncequeue ${user} 6 Sympa installation howto After that you must re-run kolabconf YOU NEED TO ACCEPT SMTP EXETERN CONNECTION --> YOU MUST CONFIGURE KOLAB FOR DO THIS FROM THE MANAGER WEB INTERFACE 7. Sympa authentication by means of LDAP Sympa authentication options are stored in auth.conf (see Appendix E), which can be found, according to Kolab path conventions, in /kolab/etc/sympa/ directory. The paragraphs needed will look like these ones: vim /kolab/etc/sympa/auth.conf ldap regexp .* host localhost:389 timeout 30 suffix dc=[@your@],dc=[@your@],dc=[@your@] get_dn_by_uid_filter (uid=[sender]) get_dn_by_email_filter (mail=[sender]) email_attribute mail scope sub user_table regexp .* information between @@ are varibles you need to change it with your hostname The ldap paragraph contains information related to LDAP access, while the user_table paragraph is needed for internal Sympa authentication. These lines provides a working configuration for Kolab Groupware. A fully commented auth.conf file is provided in Appendix E. More detailed information can be found at http://www.sympa.org/distribution/sympa-5.0.1/doc/html/node12.html#auth-conf (http://www.sympa.org/distribution/sympa-5.0.1/doc/html/node12.html#auth-conf). 8. Sympa mailing lists synchronization with LDAP distribution lists Let’s now log on the administration interface at http://[hostname]/wws/. Create and configure a the mailing lists: Sympa provides differents templates for speeding up this process. Then, edit /kolab/lib/sympa/expl/[listname]/config, adding these lines (NOTE: line spacing must remain the same!) at beginning of file: (an commented example is provided in Appendix F) vim /kolab/lib/sympa/expl/[listname]/config 7 Sympa installation howto ttl 240 user_data_source include2 include_ldap_2level_query host localhost:389 suffix1 cn=dl_name,dc=[your],dc=[your],dc=[your] timeout1 30 filter1 (objectClass=kolabGroupOfNames) attrs1 member select1 all scope1 sub suffix2 [attrs1] timeout2 30 filter2 (objectClass=kolabInetOrgPerson) attrs2 mail scope2 sub select2 all These parameters provide a working environment for LDAP synchronization, defining a two-level query.
Recommended publications
  • CYRUS: BUILD YOUR TUTORIAL OWN EMAIL SERVER Don’T Trust Google? We’Ll Help You Navigate the Sea of JOHN LANE Acronyms to Build Your Own Mailserver
    TUTORIAL MAILSERVER CYRUS: BUILD YOUR TUTORIAL OWN EMAIL SERVER Don’t trust Google? We’ll help you navigate the sea of JOHN LANE acronyms to build your own mailserver. ou can’t beat the convenience and ease of use access their mail by connecting to the server using WHY DO THIS? offered by Gmail. But unfortunately, all that any IMAP-capable email client application. • Take control of your Yfree storage comes at a price: your privacy. You will need a, preferably new, server for this email provision. Spam, intrusive adverts and snooping from unnamed project and you’ll need root access to it. Our examples • Stop outside agencies government agencies are the inevitable downside of use Arch Linux, and we created a new virtual server. from scanning the using someone else’s service for free. So why not Begin by installing Cyrus (build the Arch User content of your emails. build your own email server including anti-spam, Repository package first – see the boxout below-right): • Get webmail without advertising. anti-virus and webmail? $ pacman -U ~build/cyrus-imapd/cyrus-imapd-2.4.17-5-x86_64. You can use your own server to retrieve messages pkg.tar.xz from other mailservers, such as those provided by The default configuration writes data to /var/imap internet service providers, or other services like those and user mailboxes to /var/spool/imap. You can from Google and Yahoo. But you don’t need to rely on change this if you prefer another location; we’ll others if you have your own server. If you have a configure our server to use /srv/mail/cyrus to domain name that you control, and if you can give your illustrate this.
    [Show full text]
  • Cyrus Mail Server 2 Table of Contents
    Univention Corporate Server Cyrus mail server 2 Table of Contents 1. Introduction ........................................................................................................................ 4 2. Installation ......................................................................................................................... 5 3. Management of the mail server data ....................................................................................... 6 3.1. Management of mail domains ..................................................................................... 6 3.2. Assignment of e-mail addresses to users ........................................................................ 6 3.3. Management of mailing lists ....................................................................................... 7 3.4. Management of mail groups ........................................................................................ 7 3.5. Management of shared IMAP folders ........................................................................... 8 3.6. Mail quota ............................................................................................................... 9 4. Spam detection and filtering ................................................................................................ 10 5. Identification of viruses and malware .................................................................................... 11 6. Identification of Spam sources with DNS-based Blackhole Lists (DNSBL) ...................................
    [Show full text]
  • Thanos Tsouanas --- C.V
    Curriculum Vitæ Thanos Tsouanas 02/05/2017 I Personal details hello photo full name: Athanasios (Thanos) Tsouanas date of birth: 22/02/1983 place of birth: Athens, Greece nationality: Hellenic office address: IMD, Universidade Federal do Rio Grande do Norte Av. Cap. Mor Gouveia, S/N CEP: 59063-400, Natal{RN, Brasil phone number: (+55) (84) 9 8106-9789 (mobile, Telegram, WhatsApp) email address: [email protected] personal website: http://www.tsouanas.org/ GitHub: http://github.com/tsouanas Spoken languages Greek (native); English (proficient); Brazilian Portuguese (fluent). I Studies & academic positions 2016 { Associate professor (permanent position) in Instituto Metr´opole Digital of Universidade Federal do Rio Grande do Norte (UFRN), Brazil. 2015 Postdoctoral researcher in the Mathematics Department of Universidade Federal do Rio Grande do Norte (UFRN), Brazil. 2014 PhD from Ecole´ Normale Superieure´ de Lyon, under the supervision of Olivier Laurent, in the field of theoretical computer science. I was employed by CNRS under the Marie Curie fellowship \MALOA", and had a 1-month secondment split between the University of Oxford (in the team of Luke Ong) and Ecole´ Polytechnique (in the team of Dale Miller). Thesis title: On the Semantics of Disjunctive Logic Programs1 2010 Master of Science degree from MPLA (graduate program in Logic, Algorithms and Computation of the University of Athens and of the Technical University of Athens),2 mathematical logic specialty, grade 8.23/10. 2007 Bachelor's degree from the Department of Mathematics of the University of Athens, specialty of pure mathematics, grade \excellent" (8.51/10). Seminars and schools • Logoi school on Linear Logic and Geometry of Interaction.
    [Show full text]
  • Diplomarbeit Kalenderstandards Im Internet
    Diplomarbeit Kalenderstandards im Internet Eingereicht von Reinhard Fischer Studienkennzahl J151 Matrikelnummer: 9852961 Diplomarbeit am Institut für Informationswirtschaft WIRTSCHAFTSUNIVERSITÄT WIEN Studienrichtung: Betriebswirtschaft Begutachter: Prof. DDr. Arno Scharl Betreuender Assistent: Dipl.-Ing. Mag. Dr. Albert Weichselbraun Wien, 20. August 2007 ii Inhaltsverzeichnis Abbildungsverzeichnis vi Abkürzungsverzeichnis vii 1 Einleitung 1 1.1 Problemstellung . 1 1.2 Inhalt und Vorgehensweise . 3 2 Standards für Kalender im Internet 5 2.1 iCalendar und darauf basierende Standards . 6 2.1.1 iCalendar und vCalendar . 6 2.1.2 Transport-Independent Interoperability Protocol (iTIP) . 8 2.1.3 iCalendar Message-Based Interoperability Protocol (iMIP) . 8 2.1.4 iCalendar über WebDAV (WebCAL) . 10 2.1.5 Storage of Groupware Objects in WebDAV (GroupDAV) . 11 2.1.6 Calendaring and Scheduling Extensions to WebDAV (CalDAV) . 12 2.1.7 IETF Calendar Access Protocol (CAP) . 13 2.2 XML-basierte Formate . 15 2.2.1 XML iCalendar (xCal) . 15 2.2.2 RDF Calendar (RDFiCal) . 16 2.2.3 RDFa (RDF/A) . 16 2.2.4 OWL-Time . 17 2.3 Mikroformate (hCalendar) . 18 2.4 SyncML . 20 2.5 Weitere Formate . 21 2.6 Zusammenfassung . 22 iii 3 Offene Kalenderanwendungen im Internet 24 3.1 Server . 24 3.1.1 Citadel/UX . 24 3.1.2 Open-Xchange . 26 3.1.3 OpenGroupware.org . 26 3.1.4 Kolab2 . 27 3.1.5 Weitere Server . 28 3.2 Clients . 29 3.2.1 Mozilla Calendar Project . 29 3.2.2 KDE Kontact . 30 3.2.3 Novell Evolution . 30 3.2.4 OSAF Chandler . 31 3.2.5 Weitere Open-Source- und Closed-Source-Clients .
    [Show full text]
  • Military-Grade Cyber Security
    MILITARY-GRADE CYBER SECURITY EdgeWave ePrism Email Security Email Archive Email Volume is Growing The volume of email your business has to process has grown over 500% in the last 10 years and there appears to be no decline in sight. It is likely the amount will continue to increase, pushing your organization’s email servers to the limit, resulting in costly downtime and reduced productivity. Of even greater concern are industry-wide legal and regulatory requirements mandating that you retain all your organization’s email in an unalterable state. A comprehensive email archiving solution will not only help you meet corporate, legal and regulatory requirements, it can also help your organization achieve other critical goals. • Simplify mailbox management, shrink storage costs and reduce backup windows • Protect critical business information and intellectual property • Accelerate legal discovery and enforce corporate email policies EdgeWave has the Solution EdgeWave Email Archive is a secure enterprise SaaS solution for storage management that retains your email in an unalterable state to help meet compliance requirements, provide litigation support and meet corporate best practices guidelines. EdgeWave’s policybased archiving and built-in reporting features combine with easy-to-use management tools to assure your archived messages are indexed and easy to retrieve whenever you need them. EdgeWave’s feature-rich email archiving supports client software integration, email stubbing to maximize server storage, mobilearchive access, litigation support tools, centralizing, importing all historical emails and more. EdgeWave Email Archive supports all major messaging servers including Exchange, Domino, GroupWise, and Linux-based environments and can be deployed easily with minimal resource expenditures.
    [Show full text]
  • Selektiv Verteilen Auswertung, Ob Und Wie Der Kunde Die Kunde Der Wie Und Ob Auswertung, Kann
    04/2011 Open-Source-Tools fürs E-Mail-Marketing Titelthema Selektiv verteilen Mailings 34 Funktionierendes E-Mail-Marketing ist nicht auf proprietäre Software beschränkt. Eine Vielzahl von Open- Source-Produkten nimmt es beim Versand professionell anmutender Nachrichten durchaus mit kommerziellen Varianten auf. Dieser Artikel vergleicht fünf freie Mailer für Unternehmen. Peer Heinlein www.linux-magazin.de »approve Listenpassword [un]subscribe Liste E-Mail-Adresse«, eine Übersicht der eingetragenen Adressen liefert »approve Listenpassword who Liste«. Weil aber solche E-Mail-Kommandos erfahrungsgemäß viele nicht-technische Anwender überfordern, braucht es ein GUI für die Bedienung per Mausklick. Zwar bringt Majordomo selbst keine Weboberfläche mit, über das Tool Ma- jorcool [2] lässt sich die jedoch unpro- blematisch anbauen. Majordomo und Majorcool treten heute fast immer im Doppelpack auf, auch in vielen Confixx- Installationen bei großen Hostern. Leider haben die Entwickler den Ma- jordomo-Code seit über 10 Jahren nicht © Thorsten Rust, 123RF.com Rust, © Thorsten mehr wirklich verbessert ([3], [4]) ,auch der Rewrite Majordomo 2 hat sei- „Wer nicht wirbt stirbt.“ Diese alte Weis- E-Mail gelesen hat, wichtige Rückmel- nen Alpha-Status nie verlassen [5]. In heit haben gute Geschäftsleute stets im dung über dessen Interessen. Auch das Sachen Usability und Technik ist Ma- Hinterkopf. Wer die technischen Mög- hilft, die Qualität zu steigern – schließ- jordomo daher hoffnungslos veraltet. lichkeiten des Internets für seine Zwecke lich soll das Mailing ja nicht als plumpe Selbst grundlegende Funktionen wie ein nutzt, schafft sich neue Wege, die Kunden Werbe-Massenmail rüberkommen, son- Bounce-Management zum Austragen un- zu binden und spart eine Menge Geld. dern die Probleme und Bedürfnisse der zustellbarer Empfänger fehlt – von vielen Freie Software wie Mailman, Majordomo, Angesprochenen treffen.
    [Show full text]
  • Toward an Automated Vulnerability Comparison of Open Source IMAP Servers Chaos Golubitsky – Carnegie Mellon University
    Toward an Automated Vulnerability Comparison of Open Source IMAP Servers Chaos Golubitsky – Carnegie Mellon University ABSTRACT The attack surface concept provides a means of discussing the susceptibility of software to as-yet-unknown attacks. A system’s attack surface encompasses the methods the system makes available to an attacker, and the system resources which can be used to further an attack. A measurement of the size of the attack surface could be used to compare the security of multiple systems which perform the same function. The Internet Message Access Protocol (IMAP) has been in existence for over a decade. Relative to HTTP or SMTP, IMAP is a niche protocol, but IMAP servers are widely deployed nonetheless. There are three popular open source UNIX IMAP servers – UW-IMAP, Cyrus, and Courier-IMAP – and there has not been a formal security comparison between them. In this paper, I use attack surfaces to compare the relative security risks posed by these three products. I undertake this evaluation in service of two complementary goals: to provide an honest examination of the security postures and risks of the three servers, and to advance the study of attack surfaces by performing an automated attack surface measurement using a methodology based on counting entry and exit points in the code. Introduction Contributions and Roadmap System administrators frequently confront the The paper makes two major contributions. First, problem of selecting a software package to perform a I undertake an in-depth discussion of the relative secu- desired function. Many considerations affect this deci- rity postures of the three major open source IMAP sion, including functionality, ease of installation, soft- servers in use today.
    [Show full text]
  • KC Administrator Manual Release 8.0.0
    KC Administrator Manual Release 8.0.0 Kopano BV Jul 01, 2021 Contents 1 Abstract 2 2 Introduction 3 2.1 Intended Audience..........................................3 2.2 Architecture.............................................3 2.3 Components.............................................4 2.4 Protocols and Connections......................................5 3 Installing 6 3.1 System Requirements........................................6 3.2 Installation..............................................9 3.3 Troubleshooting Installation Issues................................. 11 3.4 SSL.................................................. 12 4 Upgrading 14 4.1 Preparing............................................... 14 4.2 Creating backups........................................... 15 4.3 KC 8 dependencies.......................................... 16 4.4 Performing the Upgrade on RPM based distributions........................ 16 4.5 Performing the Upgrade on Debian based distributions....................... 16 4.6 Finalizing the upgrade........................................ 18 5 Configure KC Components 20 5.1 Configure the Kopano Server.................................... 20 5.2 Configure Kopano Konnect..................................... 27 5.3 Configure Kopano Kraph....................................... 30 5.4 Configure the Kopano Spooler.................................... 31 5.5 Configure Kopano Caldav...................................... 32 5.6 Configure Kopano Gateway (IMAP and POP3)........................... 33 5.7 Configure Kopano Quota Manager.................................
    [Show full text]
  • Freebsd Opengroupware - English
    FreeBSD OpenGroupware - English FreeBSD As Basis For OpenGroupware.org PostgreSQL As Database FreeBSD can currently look back on a history of over 30 PostgreSQL, like BSD, originated at the University of Ca- years. It originated at the University of Berkeley and lifornia and is also distributed under the BSD license. It's FreeBSD evolved over a few intermediate steps into the project one of the oldest and most advanced object-relational founded in 1993 called FreeBSD. The supported architec- database management systems (ORDBMS) in the realm tures are the following: i386, amd64, Alpha, Itanium, of free software and looks back on a development of OpenGroupware.org SPARC, PPC (Mac) and others. over 15 years. PostgreSQL is largely conforming to the FreeBSD has very good support for multiprocessor sys- SQL92/SQL99 standards, that means that all functions in The ideal solution for professional the standards are available and behave as defined; that tems (SMP) and is distributed under the BSD license team communication on the Internet, which grants the user nearly every freedom and is free is not always the case with some commercial and non- commercial SQL database systems. of cost. Apart from having to name the origins of the with FreeBSD and PostgreSQL code, the user may use it in any which way he or she pleases. FreeBSD is a gift to humanity, we are pleased when you use it! FreeBSD has not only got many features, it also has a What is a groupware solution? huge amount of free and open software in its so-called Ports Collection.
    [Show full text]
  • Auf Und Ab Groupware
    08/2015 Die Entwicklungen bei Linux-Groupware – eine Zwischenbilanz Sysadmin Auf und ab Groupware 58 Der Groupwaremarkt ist ebenso groß wie schwierig: Microsoft Exchange und Lotus Notes halten die dicken Brocken fest, soziale Netzwerke und Google drängen nach. Freie Software kann gleichwohl auf schöne Erfolge verweisen, gerät aber immer wieder in die Opferrolle – meist wegen externer Finanzierung. Markus Feilner, Dirk Ahrnke www.linux-magazin.de Connect (Abbildungen 1 und 2). Obwohl einige Einzellösungen aus dem Linux- und Open-Source-Umfeld, zum Beispiel Spam assassin, Open SSL und Qt, inte- griert sind, vertreibt Kerio sein Produkt Connect vollständig und ohne jede Aus- nahme unter einer proprietären und rein © mahout, 123RF © mahout, kommerziellen Lizenz. Außer für Linux ist das Produkt darüber hinaus auch für Windows und Mac OS X erhältlich. Gerade Letzteres dürfte eini- ges zur Verbreitung beigetragen haben, denn für die Apple-Serverplattform gibt es relativ wenige Groupwarelösungen. Kerio hat zudem auch als einer der ersten Dritthersteller eine Implementierung der Exchange Web Services (EWS) geschafft. Unter OS X setzt mittlerweile nicht nur Outlook auf die HTTP-basierte Anbin- dung an Exchange. Seit OS X (Snow Leo- Vier Jahre her ist der letzte Groupware- sehen sich dabei natürlich Produkte, pard) lässt sich auch das zum Mac-Sys- vergleich im Linux-Magazin [1] – Grund deren Entwicklung (zum Teil) in einer tem gehörende Mail via EWS anbinden. genug, erneut den Blick auf die für Un- Community erfolgt – sprich Open-Source- ternehmen wichtige Collaboration-Sparte Software. Diese Einschätzung teilt die Caldav und Carddav zu richten, die allein in Deutschland rund Wagniskapitalbranche offenbar, denn in 700 Millionen Euro Jahresumsatz schwer die meisten Groupware-Unternehmun- Es sind allerdings nicht nur die alterna- ist.
    [Show full text]
  • Mailarchiva Enterprise Edition V1.9
    MailArchiva Enterprise Edition Administration Guide Willkommen Bienvenidos Welkom Bienvenue Welcome MailArchiva Enterprise Edition v1.9 INSTALLATION AND AMINISTRATION GUIDE For Windows / Linux MailArchiva Enterprise Edition Administration Guide 1 INDEX 1 INDEX ............................................................................................................. 2 2 IMPORTANT NOTICE ....................................................................................... 4 3 CONTACT INFORMATION ................................................................................. 4 TECHNICAL REQUIREMENTS .................................................................................. 5 4 OVERVIEW ...................................................................................................... 6 5 HIGH-LEVEL FEATURES ................................................................................... 7 6 ARCHITECTURE ............................................................................................... 9 7 INSTALLATION .............................................................................................. 10 7.1 EXCHANGE SERVER CONFIGURATION .................................................................... 11 7.2 SERVER INSTALLATION (ON WINDOWS ) ................................................................ 14 7.3 SERVER INSTALLATION (ON LINUX ) ..................................................................... 15 7.4 MICROSOFT EXCHANGE ...................................................................................
    [Show full text]
  • Understanding Email Sending in Nagios XI
    The Industry Standard In Infrastructure Monitoring Nagios XI Understanding Email Sending Purpose This document describes how Nagios XI sends emails and explains how to configure your email settings. Nagios XI uses email to send notifications as well as for sending reports. Target Audience This document is intended for use by Nagios Administrators who want to understand in detail how emails are sent by Nagios XI. Navigation Email settings in Nagios XI are located in Admin > System Config > Manage Email Settings. 1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102 www.nagios.com © 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 1 / 7 Updated – September, 2018 The Industry Standard In Infrastructure Monitoring Nagios XI Understanding Email Sending Web Browser Behavior There are some behaviors of your web browser which you need to be aware of. A lot of different web browsers will auto-complete / auto-populate fields on a web page when it loads. This usually only occurs when it sees a common field that does not have a value, it may have a saved value for that "named field" and hence it will populate that field with that saved value. If you open the Manage Email Settings page in Nagios XI you might notice that the username and password fields are already populated. You know that you didn't put a value in here, especially when this is the first time you've visited this page on a fresh install of Nagios XI.
    [Show full text]