[SOLVED] unrealircd without ssl?

Hey guys, I recently picked up a raspberry pi and decided to try out running archlinux for my needs which are basically a mumble server, unrealircd server and a web server.  I've run into an issue with unrealircd, one that's happened to me on windows as well. For whatever reason I can't get the configuration to work with unrealircd + ssl.  The second i install the non ssl server and run my .conf it's fine and i can connect. Is there a package without ssl? I'm still new to the whole pure command line linux and all that so i'm not sure how to easily browse the different packages.  So either if there's a non ssl package, or a way to disable ssl in the .conf would be lovely to know about.  Thanks guys!
Last edited by hotlikedimes (2012-07-27 01:25:29)

What error messages specifically are you getting with unrealircd and ssl? I don't remember that being much of a challenge to set up.
Looking at my configuration file, just had to tell it where to find the certificate and key:
set {
ssl {
certificate ssl.crt;
key ssl.key;
If you really want to disable it, try removing the "ssl;" line from the port configuration section and link section (not sure if anything else needs to be done, but that's the only references I can find to ssl).

Similar Messages

  • [solved] Owncloud over SSL: http works, but over https only apache

    Hello,
    I try to setup owncloud with SSL.
    Accessing over http works, but over https, I reach the default apache page instead of the owncloud page.
    (I set up SSL according to https://wiki.archlinux.org/index.php/LAMP#SSL )
    How could I make the owncloud site available over https?
    relevant files:
    owncloud.conf:
    <IfModule mod_alias.c>
    Alias /owncloud /usr/share/webapps/owncloud/
    </IfModule>
    <Directory /usr/share/webapps/owncloud/>
    Options FollowSymlinks
    Require all granted
    php_admin_value open_basedir "/srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/owncloud/:/etc/webapps/owncloud/:/mt/daten/owncloud/"
    </Directory>
    <VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /usr/share/webapps/owncloud
    ServerName http://example.com/owncloud
    </VirtualHost>
    I tried to change 80 to 443, but then, systemctl restart httpd didn't work. (apache failed)
    httpd.conf:
    # This is the main Apache HTTP server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "logs/access_log"
    # with ServerRoot set to "/usr/local/apache2" will be interpreted by the
    # server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
    # will be interpreted as '/logs/access_log'.
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path. If you point
    # ServerRoot at a non-local disk, be sure to specify a local disk on the
    # Mutex directive, if file-based mutexes are used. If you wish to share the
    # same ServerRoot for multiple httpd daemons, you will need to change at
    # least PidFile.
    ServerRoot "/etc/httpd"
    # Mutex: Allows you to set the mutex mechanism and mutex file directory
    # for individual mutexes, or change the global defaults
    # Uncomment and change the directory if mutexes are file-based and the default
    # mutex file directory is not on a local disk or is not appropriate for some
    # other reason.
    # Mutex default:/run/httpd
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses.
    #Listen 12.34.56.78:80
    Listen 80
    <IfModule mod_ssl.c>
    Listen 443
    </IfModule>
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_socache_module modules/mod_authn_socache.so
    LoadModule authn_core_module modules/mod_authn_core.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_user_module modules/mod_authz_user.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    #LoadModule authz_dbd_module modules/mod_authz_dbd.so
    LoadModule authz_core_module modules/mod_authz_core.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    LoadModule access_compat_module modules/mod_access_compat.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_form_module modules/mod_auth_form.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule allowmethods_module modules/mod_allowmethods.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cache_disk_module modules/mod_cache_disk.so
    #LoadModule cache_socache_module modules/mod_cache_socache.so
    LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
    #LoadModule socache_dbm_module modules/mod_socache_dbm.so
    #LoadModule socache_memcache_module modules/mod_socache_memcache.so
    #LoadModule watchdog_module modules/mod_watchdog.so
    #LoadModule macro_module modules/mod_macro.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    #LoadModule echo_module modules/mod_echo.so
    #LoadModule buffer_module modules/mod_buffer.so
    #LoadModule data_module modules/mod_data.so
    #LoadModule ratelimit_module modules/mod_ratelimit.so
    LoadModule reqtimeout_module modules/mod_reqtimeout.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule request_module modules/mod_request.so
    LoadModule include_module modules/mod_include.so
    LoadModule filter_module modules/mod_filter.so
    #LoadModule reflector_module modules/mod_reflector.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule sed_module modules/mod_sed.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule deflate_module modules/mod_deflate.so
    #LoadModule xml2enc_module modules/mod_xml2enc.so
    #LoadModule proxy_html_module modules/mod_proxy_html.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule ldap_module modules/mod_ldap.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_debug_module modules/mod_log_debug.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule logio_module modules/mod_logio.so
    #LoadModule lua_module modules/mod_lua.so
    LoadModule env_module modules/mod_env.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    #LoadModule expires_module modules/mod_expires.so
    LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule version_module modules/mod_version.so
    #LoadModule remoteip_module modules/mod_remoteip.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
    LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
    #LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
    LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule proxy_express_module modules/mod_proxy_express.so
    #LoadModule session_module modules/mod_session.so
    #LoadModule session_cookie_module modules/mod_session_cookie.so
    #LoadModule session_crypto_module modules/mod_session_crypto.so
    #LoadModule session_dbd_module modules/mod_session_dbd.so
    LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
    #LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
    LoadModule ssl_module modules/mod_ssl.so
    #LoadModule dialup_module modules/mod_dialup.so
    LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
    LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
    LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
    LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
    #LoadModule mpm_event_module modules/mod_mpm_event.so
    LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
    LoadModule unixd_module modules/mod_unixd.so
    #LoadModule heartbeat_module modules/mod_heartbeat.so
    #LoadModule heartmonitor_module modules/mod_heartmonitor.so
    #LoadModule dav_module modules/mod_dav.so
    LoadModule status_module modules/mod_status.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule asis_module modules/mod_asis.so
    #LoadModule info_module modules/mod_info.so
    #LoadModule suexec_module modules/mod_suexec.so
    #LoadModule cgid_module modules/mod_cgid.so
    #LoadModule cgi_module modules/mod_cgi.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule dir_module modules/mod_dir.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    #LoadModule actions_module modules/mod_actions.so
    #LoadModule speling_module modules/mod_speling.so
    LoadModule userdir_module modules/mod_userdir.so
    LoadModule alias_module modules/mod_alias.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    #own additions:
    LoadModule php5_module modules/libphp5.so
    <IfModule unixd_module>
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User http
    Group http
    </IfModule>
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents. e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #ServerName www.example.com:80
    # Deny access to the entirety of your server's filesystem. You must
    # explicitly permit access to web content directories in other
    # <Directory> blocks below.
    <Directory />
    Options FollowSymLinks
    AllowOverride none
    Require all denied
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/srv/http"
    <Directory "/srv/http">
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    Options Indexes FollowSymLinks
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    # AllowOverride FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Require all granted
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <Files ".ht*">
    Require all denied
    </Files>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "/var/log/httpd/error_log"
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule log_config_module>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    CustomLog "/var/log/httpd/access_log" common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog "/var/log/httpd/access_log" combined
    </IfModule>
    <IfModule alias_module>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
    </IfModule>
    <IfModule cgid_module>
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #Scriptsock cgisock
    </IfModule>
    # "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/srv/http/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
    </Directory>
    <IfModule mime_module>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig conf/mime.types
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #AddType application/x-gzip .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #AddHandler cgi-script .cgi
    # For type maps (negotiated resources):
    #AddHandler type-map var
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
    </IfModule>
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type. The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #MIMEMagicFile conf/magic
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://www.example.com/subscription_info.html
    # MaxRanges: Maximum number of Ranges in a request before
    # returning the entire resource, or one of the special
    # values 'default', 'none' or 'unlimited'.
    # Default setting is to accept 200 Ranges.
    #MaxRanges unlimited
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall may be used to deliver
    # files. This usually improves server performance, but must
    # be turned off when serving from networked-mounted
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    # Defaults: EnableMMAP On, EnableSendfile Off
    #EnableMMAP off
    #EnableSendfile on
    # Supplemental configuration
    # The configuration files in the conf/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.
    # Server-pool management (MPM specific)
    Include conf/extra/httpd-mpm.conf
    # Multi-language error messages
    Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
    # Language settings
    Include conf/extra/httpd-languages.conf
    # User home directories
    Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # Various default settings
    Include conf/extra/httpd-default.conf
    # Include owncloud
    Include /etc/httpd/conf/extra/owncloud.conf
    Include conf/extra/php5_module.conf
    # Configure mod_proxy_html to understand HTML4/XHTML1
    <IfModule proxy_html_module>
    Include conf/extra/proxy-html.conf
    </IfModule>
    # Secure (SSL/TLS) connections
    Include conf/extra/httpd-ssl.conf
    # Note: The following must must be present to support
    # starting without SSL on platforms with no /dev/random equivalent
    # but a statically compiled-in mod_ssl.
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    # uncomment out the below to deal with user agents that deliberately
    # violate open standards by misusing DNT (DNT *must* be a specific
    # end-user choice)
    #<IfModule setenvif_module>
    #BrowserMatch "MSIE 10.0;" bad_DNT
    #</IfModule>
    #<IfModule headers_module>
    #RequestHeader unset DNT env=bad_DNT
    #</IfModule>
    thanks!
    Last edited by Carl Karl (2014-05-06 07:40:53)

    OK, solved.
    What I made wrong:
    https://localhost leads to the apache page
    https://localhost/owncloud leads to the owncloud page.
    (Just as an information if there are other apache noobs like me...)

  • Email will not setup "Do you want to try setting up the account without SSL"

    email will not setup, get  message  "Do you want to try setting up the account without SSL"

    Is that a question? hard to tell
    How about some info
    What email (yahoo? gmail? compuserve?)
    On what (the ipad? vista?)
    Did you do anything in response to the question other than post here?

  • Not able to connect with port 143 without SSL

    Hello ,
    I am using javaMail API. i want to access the class IMAPStore with this constuctor
    public IMAPStore(Session session, URLName url) {
         this(session, url, "imap", false);
    it has SSL false.
    But as i set the property as - imapProps.setProperty("mail.store.protocol", "imaps");
    so it always called constructor from class IMAPSSLStore as -
    public IMAPSSLStore(Session session, URLName url) {
         super(session, url, "imaps", true); // call super constructor
    when i debug the code it load the class IMAPSSLStore always since its property has been set.
    Actually i want to use both port 993(with ssl) and 143 (without ssl)
    I know that if i get the correct provider then i will be able to get the correct class IMAPSSLStore or IMAPStore, but for that a property has to be set like
    props.getProperty("mail."+protocol+".class");
    which i am not making out.
    any help?

    You never need to use the constructors directly, and you rarely need to
    use the classes directly. Most of the time you can just use the Store class.
    Store store = session.getStore("imap"); // or "imaps"
    You'll find lots of examples in the JavaMail FAQ and in the demo programs
    that come with JavaMail.

  • What it means to us, if we connect without SSL?

    Could not connect to AIM This account is configured to require SSL, but an SSL connection could not be made. To connect without SSL, deselect "Require SSL" in the Server Settings pane of Account preferences.

    Hi,
    From iChat version 1 through until about version 4 there was non SSL option for iChat AIM connections.
    The connection is supposed to be more secure with SSL as the packets of data involved are encrypted.
    This means that non SSL data packets are essentially in plain text.
    Now during the time of iChat since the introduction of the SSL option the SSL server has been known to drop the connection more often that the regular server, but it has been improving throughout iChat 5 and 6 and Messages that follows. It also calls for you to manually reconnect as it is not Automatic like the non SSL is.
    Of course we now have the HeartBleed issue.
    This is where the servers involved in such things as secure logins like this to AIM are potentially, I stress potentially, compromised due to the use of non updated forms of SSL encryption apps on those servers.
    The AIM account I use everyday is using SSL
    The Apple IDs that are also valid AIM Screen Names don't use the SSL server at AIM but the passwords are changed regularly.
    In 15 years of using iChat and now Messages with the AIM servers I have not had a problem.
    It was estimated at one time that half the US population had Internet access and half of those had an AIM account of some sort.  (About 75 million in the US alone)
    (what are the chances of it being you... once you consider world wide numbers)
    Previously I would have said if SSL does not work then use the non SSL option.
    However based on this story on the BBC I would tend to advise caution at present as there is obviously a surge in people trying to find anyone's details.
    9:39 pm      Monday; April 14, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How can i publish owa on exchange 2013 without ssl?

    hi
    i need connect to owa on exchange 2013 without ssl.
    but when i change config from https to http. my iis return internal error.
    can anybody tell me switch from https to https step by step on exchange 2013?
       regards

    Check out http://technet.microsoft.com/en-us/library/dn635115(v=exchg.150).aspx#OWA
    Bharat Suneja
    Exchangepedia.com | bsuneja
    This posting is provided "AS IS" with no warranties, and confers no rights.
    Please do not send email directly to this alias. This alias is for newsgroup purposes only.

  • Can JDE BSSV on 11g be deployed without SSL

    I am integrating JDE E1 with FMW SOA 11g. I want to know if BSSVs can be deployed on WLS without SSL. I understand that WLS 10.3.2 had a product limitation.
    Any help or pointers will be appreciated.
    Thanks,
    Ashwani

    Your application is trying to use a OCI with a version not supported by your application referenced ODP.Net data provider.
    If you are using ISS, and you have two different Oracle Client installation, you can define the provider path for you application. In the web.config file (at web application root directory) you can define it
    You can get the information in the ODP.Net Manual
    http://download.oracle.com/docs/html/E10927_01/InstallODP.htm#BABCBFDJ
    for example, in the web.config you can define the provider and the path for it
    <system.data>
    <DbProviderFactories>
    <add name="Oracle Data Provider for .NET Version 11.1.0.6.0"
    invariant="Oracle.DataAccess.Client Version 11.1.0.6.0"
    description="Oracle Data Provider for .NET Version 11.1.0.6.0"
    type="Oracle.DataAccess.Client.OracleClientFactory, Oracle.DataAccess,
    Version=2.111.6.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
    </DbProviderFactories>
    </system.data>
    <oracle.dataaccess.client>
    <settings>
    <add name="DllPath" value="D:\oracle\OraOdac11g\product\11.1.0\client_1\BIN"/>
    <add name="FetchSize" value="65536"/>
    <add name="PromotableTransaction" value="promotable"/>
    <add name="StatementCacheSize" value="10"/>
    <add name="TraceFileName" value="c:\odpnet2.trc"/>
    <add name="TraceLevel" value="0"/>
    <add name="TraceOption" value="0"/>
    </settings>
    </oracle.dataaccess.client>
    Also, you maybe can try with an instant ODP.Net installation with your application
    http://alderprogs.blogspot.com/2009/04/deploying-odpnet-with-oracle-instant.html
    If you are using IIS, you must use a different application pool because your DLL files (i.e. OCIW32.DLL) must be different than used by other web applications.

  • Running iFolder3.9 without SSL is supported by Novell ?

    running iFolder3.9(OES11) without SSL is supported by Novell ?
    We don't want SSL(overhead) because either we connect from our office LAN or otherwise via VPN, and also almost no one uses web access.
    Please let me know
    Regards

    needee,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • POP without SSL on Exchange Online

    Has anyone figured out a way to use POP without SSL? 
    Just like many things with Microsoft, I'm getting conflicting answers from Microsoft reps.  Originally, sales people said it's supported, but when we started implementing, we couldn't get it to work so we opened a ticket and were told, once again, that
    it's supported.  I finally spoke to another rep who said it's not supported.
    We have a ticketing system that uses POP and doesn't support SSL so we're stuck with having to set up a POP server in-house just for.  Kind of defeats the whole purpose of the cloud. 
    I am very frustrated with Microsoft and regretting going with them for the outsourced email and the random restrictions they come up with using "security" as an excuse.

    Has anyone figured out a way to use POP without SSL? 
    Just like many things with Microsoft, I'm getting conflicting answers from Microsoft reps.  Originally, sales people said it's supported, but when we started implementing, we couldn't get it to work so we opened a ticket and were told, once again, that
    it's supported.  I finally spoke to another rep who said it's not supported.
    We have a ticketing system that uses POP and doesn't support SSL so we're stuck with having to set up a POP server in-house just for.  Kind of defeats the whole purpose of the cloud. 
    I am very frustrated with Microsoft and regretting going with them for the outsourced email and the random restrictions they come up with using "security" as an excuse.
    The guys from messageops.com has a guide how to I copy some of the Info
    You can install stunnel on a server or workstation in your environment and configure your devices which don’t support TLS or POP3 over SSL to connect through that server to the Microsoft Online Services.  Continue reading for details on how to
    configure and use stunnel.
    Getting stunnel up and running is pretty straight forward.
    Step 1 – Install stunnel
    You can download the stunnel Windows binaries from
    http://www.stunnel.org/download/binaries.html
    After downloading and installing the exe, you will likely want to configure it to run as a service.  To do that, go to Start->All Programs->stunnel->Service Install.
    Step 2 – Configure the stunnel configuration file
    You can download a configuration file that has been preconfigured for use with Microsoft Online here.
    The configuration file looks like:
     # Stunnel configuration file for Microsoft Online POP3 and SMTP
    # Author: MessageOps
    # GLOBAL OPTIONS
    client = yes
    output = stunnel-log.txt
    debug=4
    taskbar=yes
    [POP3 Incoming]
    #Accept connections on port 110 and send to Microsoft Online on port 995 over SSL
    accept = 127.0.0.1:110
    connect = pop.mail.microsoftonline.com:995
     [SMTP Outgoing]
    #Accept connections on port 25 and send to Microsoft Online on port 587 over TLS
    protocol = smtp
    accept = 127.0.0.1:25
    connect = Smtp.mail.microsoftonline.com:587
    What this configuration file does is tells stunnel to listen or ports 110 and 25 and it then redirects connections on those ports to the appropriate SSL ports.
    You might need to modify a few settings in the file:
    The Microsoft Online Server names are for customers in the North America Datacenter.  If you are in a different datacenter, update to the appropriate values.
    With this configuration, stunnel will only listen on the address 127.0.0.1.  This is only useful if the application that needs to connect to Microsoft Online resides on the system that stunnel is running on.  You can remove the 127.0.0.1 portion
    of the address to have the service listen on all IP Addresses.  That would look like:
    accept = 25
     After the file has been modified, replace the existing stunnel.conf in the Program Files\stunnel directory with the new one.
     Finally start the stunnel service.

  • Home server for file sharing without SSL certificates?

    Hi,
    I am wanting to use this server to set up a home network...
    Mainly I just want to share document, video and music files from my iMac with multiple iOS devices and PCs in the house.
    Can I use this server to set up such a network without purchasing SSL certificates and such?
    Thank you for your help!
    Tiffany

    Sharing with iOS devices without SSL is - if I recall correctly - problematic, but you can have an SSL certificate without purchasing. Just open Keychain Access, click the Keychain Access menu item in the top of the screen and choose one of the options in the Certificate Assistant drop down menu.

  • CUPS in Tiger compiled without SSL?

    Hiya!
    It seems that the printer client in Tiger is compiled without SSL support:
    otool -L /usr/libexec/cups/backend/ipp
    /usr/libexec/cups/backend/ipp:
    /usr/lib/libcups.2.dylib (compatibility version 2.0.0, current version 2.7.0)
    /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 88.1.3)
    Is that correct? Anybody got printing-over-ssl working?
    Kind regards, Jasper.

    The IPP backend does have SSL support; it's supplied by the http functions in libcups, which gets them from the Security.framework:
    nm -u /usr/lib/libcups.2.dylib | grep SSL
    _SSLClose
    _SSLDisposeContext
    _SSLGetBufferedReadSize
    _SSLHandshake
    _SSLNewContext
    _SSLRead
    _SSLSetAllowsAnyRoot
    _SSLSetAllowsExpiredCerts
    _SSLSetConnection
    _SSLSetIOFuncs
    _SSLWrite
    Hope this helps.

  • Cannot start iChat Server on OSX 10.4.3 without SSL certitficate

    I've installed an OSX server 10.4.3 on a private network, without DNS.
    All services are running correctly just needing a direct addressing.
    I'm trynig to run iChat server but it stop and seems to need a SSL certificate. This is the error message :
    "Jan 19 17:42:28 cube iChatServer-jabberd[16529]: 20060119T16:42:28: [error] (-configure): SSL Connections are disabled. [error:02001002:system library:fopen:No such file or directory] while using SSL certificate file '/etc/certificates/Default.crtkey' for host '0.0.0.0'. "
    What's the problem with this configuration ? Do you really need SSL certificate to run iChat server on a private network.
    Thanks for your help .

    James thanks a lot.
    At 73 I'm not too high tech.
    This was the first time I'd seen something like this on my Mac, so I was panicky.
    The thing listed a whole bunch of different malware by name that supposedly
    infected me with threat levels of "high". Looked convincing to this old fart.

  • Running iphone exchange without SSL cert.

    I have multiple exchange servers (for different companies)
    for which I am trying to setup users Iphones,
    the only one I have gotten to work is the company that has a
    purchased certificate, one of the companies that has a self signed cert
    seemed to accept it but never downloads the folders or mail, later
    it starts requesting the user name and password which it does not accept.
    I have other exchange servers that do have OWA enabled and working but do
    not have a cert. I have tried SSL on and off with these, no diffrence.
    what am I missing can iphone exchange work at all WITHOUT a cert?
    sorry for the long post,
    I've been working on this for almost 5 hrs now...:-(
    thanks,
    Jonathan

    You probably CAN do this, but the question is WHY?
    It might seem like a pain to obtain and install and configure the certificate, but if users besides the iPhone folks access OWA, then web browsers will probably throw up a lot of errors and warnings that are irritating to users and look unprofessional. If you are consulting or managing the servers for these companies I suggest explaining that in today's insecure environment, encrypted, authenticated email access is the only way to do this--and that getting the certificate is necessary. Godaddy.com probably sells them for around 30$/year for 3 years or so?
    To your specific problem, can users access OWA on the server from their browser, but not the phone? There a a lot of problems that could happen--the company firewall may not be forwarding the traffic correctly or allowing http to the server, Exchange may not have non-ssl traffic allowed to the mobile website, etc.

  • Administration ports without SSL

    Hi!
    Is there any way of using administration ports (to get the separation of real/admin traffic) without using SSL?
    We have a secured network (good enough anyway) so the SSL is not of any great use for us, it's just a complex factor that creates a lot of work.
    thanks.
    H. Waller

    The port setting under the Advanced tab for the account preferences is for the incoming mail server only. You can select "Use SSL" for the .Mac incoming mail server which will change the incoming mail server port from 143 to 993 automatically.
    To change the port setting for the account's SMTP server, go to Mail > Preferences > Accounts and under the Account Information tab for the account preferences at the SMTP server selection, select the Server Settings button below for the .Mac SMTP server.
    Enter 587 in place of 25 in the Server Port field and when finished, select OK to save the changed setting.

  • [SOLVED] enable apache ssl to use httpS at will for any vhost

    Hi,
    I have enabled ssl on my apache install without a problem by including the file httpd-ssl.conf in my http.conf.
    I have tested access by trying to access my phpmyadmin install by going to my site: https://example.com/phpmyadmin
    However, when trying to use a vhost with https, it doesn't work, I get redirected to a default page (first configured vhost) as https.
    If I modify the vhost like this, adding 443:
    <VirtualHost *:80 *:443>
    </VirtualHost>
    I get an error "(Error code: ssl_error_rx_record_too_long)".
    If I just add to the vhost config file instead like this:
    NameVirtualHost *:80
    NameVirtualHost *:443
    SSLStrictSNIVHostCheck off
    then I still only get the default site, but not my vhost site under ssl.
    Any pointers on getting this to work? I want to be able to universally add an "s" to "http" for any vhost whenever I feel like it to encrypt traffic...
    Thanks!
    EDIT: Here's the solution I found. I disabled ssl on apache by commentingout the httpd-ssl.conf-Include directive in httpd.conf.
    Then I installed stunnel and pointed it to my server key and certificate and enabling https connections to forward to port 80 on localhost.
    One gotcha to look out for was to put "https: ALL" into the /etc/hosts.allow file as stunnel apparently uses this to decide whether a client can connect.
    Last edited by awayand (2011-04-24 12:10:46)

    Apache is already listening on 443, otherwise it wouldn't work at all when I access https://example.com/phpmyadmin. My problem is that instead of responding by serving the requested vhost, apache serves only the default vhost page. For example, https://x.example.com, https://y.example.com, https://z.example.com all serve my default page at https://example.com instead of the corresponding vhost. Any idea as to what to configure so that apache serves the requested vhost under https?
    EDIT: clarification
    Last edited by awayand (2011-04-23 04:39:02)

Maybe you are looking for

  • What is the diffrence between sap events and application events

    Hi all, what is the diffrence between sap events and application events.Can any one tell me with examples. regards,

  • Questions About Database Recovery (-30975)

    Hello, In Berkeley 4.5.20, we are seeing the following error sporadically, but more frequently than we'd like (which is, to say, not at all): "BerkeleyDbErrno=-30975 - DbEnv::open: DB_RUNRECOVERY: Fatal error, run database recovery" This exception is

  • Lumia 1020 Windows Key bug after Denim Update

    Hey guys, I recently updated my WP 8.1 OS to Lumia Denim. Looks like there is a serious bug in the update. Sometimes when an application is open like messages, whatsapp, cortana search and then when you click on windows button, instead of going to ho

  • Ignoring the dot and Minus Symbol

    Hello ABAPpers, I have a field WRBTR(Amount in document currency) whose value contains the dot as well as minus symbol. I have to ignore this value. Is their any function module or the standard method to ignore this value. Please reply. Regards, Rahu

  • Unable to start UCM server11

    Hi, While trying to start UCM server I am getting the following error. <Feb 21, 2011 7:27:50 AM MST> <Warning> <JDBC> <BEA-001110> <No test table set up for pool "CSDS". Connections will not be tested.> <Feb 21, 2011 7:27:51 AM MST> <Warning> <oracle