Seite 1 von 2 12 LetzteLetzte
Ergebnis 1 bis 10 von 19

SSL Verbindung Zu XLned Funktioniert Nicht Mit Hellanzb

Dieses ist eine Diskussion zum Thema SSL Verbindung Zu XLned Funktioniert Nicht Mit Hellanzb im Forum Linux-Newsreader, in der Kategorie Usenet-Newsreader; Hallo, ich habe mir gestern einen Usenet Account bei XLned geholt. Soweit so gut :). Nur leider geht die SSL ...

  
  1. #1
    Joe
    Gast Avatar von Joe

    Standard SSL Verbindung Zu XLned Funktioniert Nicht Mit Hellanzb

    Hallo,
    ich habe mir gestern einen Usenet Account bei XLned geholt. Soweit so gut :).

    Nur leider geht die SSLicon Verbindung zu XLned nicht über SSL, sondern nur über Porticon 119, also unverschlüsselt.
    Zu anderen Providern wie Giganews oder Hitnews geht die SSL Verbindung allerdings.

    Woran könnte das liegen?

    Gruß

  2. #2
    Administrator Avatar von Borbarad
    Registriert
    17.09.2007
    Beiträge
    1.517
    Blog-Einträge
    3

    Standard

    Hallo Joe!

    Bekommst du eine Fehlermeldung, wenn du versucht zu connecten? Wenn ja, welche?


    Borbarad

  3. #3
    Forum-Team Avatar von blackcrow
    Registriert
    08.10.2007
    Beiträge
    310

    Standard

    Hast du SSLicon aktiviert, da musste du irgendnen Wert auf true setzen. Als ich noch hellanzb benutzt habe, brauchte man immer ein extra Paket für SSL, zeigt dir hella aber in der Konsole an wenn du es startest.
    Also starte mal Hella, versuch was zu laden und poste den Text mal hier rein

  4. #4
    Joe
    Gast Avatar von Joe

    Standard

    Hallo,
    ich kann connecten, und hellanzb geht ohne zusätzliche Tools (mitlerweile).
    Habe auch die Option SSLicon auf True gesetzt, und den Porticon 563 eingestellt.

    Ich kriege keine Fehlermeldung, er öffnet zwei Connectionsicon, lädt dann aber nicht.

    Habe das ganze direkt probiert (was ich normal nicht mache), und dann über meine normale Lösung:
    Tunnel über nen anderen Server
    Auch dort geht es nicht.

    Das ganze geht mit den Configs, wie gesagt, bei Giganews (habe da auch einen Acc) und bei Hitnews (Test-Acc) prima, nur eben bei XLned mag er nicht :(. Warum auch immer.
    Der Port 119, ohne SSL, geht einwandfrei.

    Wenn ich über ein anderes Programm (Icedove, News File Grabber) eine SSL Verbindung öffne, geht es. Also muss es an hellanzb liegen.

    Hier mal meine config:
    Code:
    # 
    # hellanzb.conf - sample hellanzb configuration file
    #
    # To quickly get started, change the default defineServer() call and the
    # Hellanzb.PREFIX_DIR directory
    #
    # This is actually interpreted python code: strings must be surrounded by
    # quotes, numbers and the 'None' keyword should not
    # 
    # $Id: hellanzb.conf.sample 1057 2007-03-27 04:13:53Z pjenvey $
    
    # Log output to this file, set to None (no single quotes) for no logging
    Hellanzb.LOG_FILE = os.path.expanduser('~') + '/.hellanzb/log'
    
    # Uncomment this line to log DEBUG messages to the specified file
    #Hellanzb.DEBUG_MODE = os.path.expanduser('~') + '/.hellanzb/log-debug'
    
    # Automatically roll over both log files when they reach LOG_FILE_MAX_BYTES
    # size
    Hellanzb.LOG_FILE_MAX_BYTES = 100
    
    # Save LOG_FILE_BACKUP_COUNT of those rolled over log files
    Hellanzb.LOG_FILE_BACKUP_COUNT = 1
    
    # Define server connections. Servers can have multiple hosts, hellanzb will
    # persist the number of connections to each specified server. There may be
    # multiple defineServer lines.
    
    # Set both the username and password to 'None' (without the quotes) if your
    # usenet server does not require authorization
    defineServer(id = '',
                 hosts = [ 'localhost:8888' ],
                 #hosts = [ 'news.changeme.com', 'morenews.changeme.com:8000' ],
    
    
                 username = '',
                 password = '',
                 #username = None,           # no auth
                 #password = None,
    
                 connections = 2,
                 antiIdle = 4.5 * 60,        # 4 minutes, 30 seconds, 0 to disable
                 #bindTo = '204.31.33.7',    # connect FROM this ip address
                 #enabled = False,           # disable this server
                 #skipGroupCmd = False,      # skip sending nntp GROUP commands
                 #fillserver = 0,            # defaults to 0 (a main server).
                                             # fillservers must have values > 0
                                             # (priority)
                 ssl = True
                 )
    
    # Uncomment this line to limit all server connections to the specified KB/s
    # bandwidth
    #Hellanzb.MAX_RATE = 150 # limit to 150kB/s
    
    
    # Important locations
    Hellanzb.PREFIX_DIR = os.path.expanduser('~') + '/.hellanzb/'
    
    # Where to put queued .nzb files
    Hellanzb.QUEUE_DIR = os.path.expanduser('~') + '/Desktop/'
    #Hellanzb.PREFIX_DIR + 'nzb/daemon.queue/'
    
    # Where the fully processed archives go
    Hellanzb.DEST_DIR = os.path.expanduser('~') + '/Desktop/downloads'
    #Hellanzb.PREFIX_DIR + 'done/'
    
    # The .nzb currently being downloaded is stored here
    Hellanzb.CURRENT_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.current/'
    
    # The archive currently being downloaded is stored here
    Hellanzb.WORKING_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.working/'
    
    # Archives interrupted in the middle of downloading are stored here temporarily
    Hellanzb.POSTPONED_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.postponed/'
    
    # Archives currently being processed. May contains archive directories, or
    # symbolic links to archive directories
    Hellanzb.PROCESSING_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.processing/'
    
    # Temp storage
    Hellanzb.TEMP_DIR = Hellanzb.PREFIX_DIR + 'nzb/daemon.temp/'
    
    # Filename to store hellanzb state in between CTRL-Cs. The state (includes the
    # order of the queue, and smart PARicon recovery information) is intermittently
    # written out as XML to this file
    Hellanzb.STATE_XML_FILE = Hellanzb.PREFIX_DIR + 'nzb/hellanzbState.xml'
    
    
    # _Sub directory within the nzb archive dir_ to move processed files to
    Hellanzb.PROCESSED_SUBDIR = 'processed'
    
    # Remove the PROCESSED_SUBDIR if the archive was successfully post processed. 
    # Warning: The normal Hellanzb.LOG_FILE should be enabled with this option --
    # for a record of what hellanzb deletes
    Hellanzb.DELETE_PROCESSED = True
    
    
    # Maximum amount of memory used to cache encoded Article data segments.
    # hellanzb will write article data to disk when this cache is exceeded
    # Available settings:
    # -1: Unlimited size
    #  0: Disable cache (only cache to disk)
    # >0: Limit cache to this size, in bytes, KB, MB, e.g.:
    #     1024 '1024KB' '100MB' '1GB'
    #Hellanzb.CACHE_LIMIT = 0
    
    
    # Save archives into a sub directory of DEST_DIR named after their newzbin.com
    # category (when queued using the enqueuenewzbin XMLRPC call); e.g. Apps,
    # Movies, Music
    Hellanzb.CATEGORIZE_DEST = True
    
    # Disable SMART_PAR (download all PAR files)
    #Hellanzb.SMART_PAR = False
    
    # Supply a path to the (un)RARicon command
    #Hellanzb.UNRAR_CMD = None
    
    # Supply a path to the par2 command
    Hellanzb.PAR2_CMD = '/usr/bin/par2'
    
    # Skip unraring during post processing
    Hellanzb.SKIP_UNRAR = True
    
    # Supply a path to the optional macbinconv command (for converting MacBinary
    # files)
    #Hellanzb.MACBINCONV_CMD = None
    
    # hellanzb inherits the umask from the current user's environment (unless it's
    # running in daemon mode). The umask can be forced with this option
    #Hellanzb.UMASK = 0022
    
    
    # Supported music types (case insensitive) and optionally their decompression
    # executables
    # and the file type that executable will decompress to (case insensitive). The
    # exes must be in the PATH.
    #
    # <FILE> will be replaced with the name of music file
    # optional <DESTFILE> is <FILE> with the specified extension
    #
    # None means these files don't need to be decompressed
    defineMusicType('wav', None, None)
    defineMusicType('mp3', None, None)
    #defineMusicType('ape', 'mac <FILE> <DESTFILE> -d', 'wav')
    #defineMusicType('flac', 'flac -d -- <FILE>', 'wav')
    #defineMusicType('shn', 'shorten -x < <FILE> > <DESTFILE>', 'wav')
    
    # Max files we should decompress at the same time
    Hellanzb.MAX_DECOMPRESSION_THREADS = 2
    
    
    # Enable Mac OS X Growl notifications
    Hellanzb.GROWL_NOTIFY = False
    
    # The growl notification server, in the format 'hostname'
    Hellanzb.GROWL_SERVER = 'IP'
    
    # The growl password
    Hellanzb.GROWL_PASSWORD = 'password'
    
    
    # Enable libNotify Daemon notifications
    Hellanzb.LIBNOTIFY_NOTIFY = False
    
    
    # Disable ANSI color codes in the main screen (preserves the in place scroller)
    #Hellanzb.DISABLE_COLORS = False
    
    # Disable ALL ANSI color codes in the main screen (for terminals that don't
    # support ANY ANSI codes
    #Hellanzb.DISABLE_ANSI = False
    
    
    # Hostname for the XMLRPC client to connect to. By default, localhost
    Hellanzb.XMLRPC_SERVER = 'localhost'
    
    # IP address on which the XMLRPC Server will be binded to.
    # Type '0.0.0.0' for any interfaces, '127.0.0.1' will disable remote access
    Hellanzb.XMLRPC_SERVER_BIND = '127.0.0.1'
    
    # Port number the XML RPC server will listen on, and the client will connect to.
    # Set to 'None' (without the quotes!) for no XML RPC server
    Hellanzb.XMLRPC_PORT = 8760
    
    # Password for the XML RPC server. You might probably never use this, but the
    # command line XML RPC calls do -- it should definitely be changed from its
    # default value. The XML RPC username is hardcoded as 'hellanzb' -- E.g. URL:
    # http://hellanzb:changeme@localhost:8760
    Hellanzb.XMLRPC_PASSWORD = 'changeme'
    
    
    # Username/Password to http://www.newzbin.com for automatic NZB downloading
    Hellanzb.NEWZBIN_USERNAME = None
    Hellanzb.NEWZBIN_PASSWORD = None
    
    
    # If any of the following file types are missing from the archive and cannot be
    # repaired, continue processing because they're unimportant (case insensitive)
    Hellanzb.NOT_REQUIRED_FILE_TYPES = [ 'log', 'm3u', 'NFOicon', 'nzb', 'sfv', 'txt' ]
    
    # Don't get rid of (move into the PROCESSED dir) the following file types when
    # finished post processing (case insensitive)
    #Hellanzb.KEEP_FILE_TYPES = [ 'log', 'm3u', 'nfo', 'nzb', 'sfv', 'txt' ]
    Hellanzb.KEEP_FILE_TYPES = [ 'nfo', 'txt' ]
    
    
    # List of alternative file extensions matched as NZB files in the QUEUE_DIR.
    # The 'nzb' file extension is always matched
    #Hellanzb.OTHER_NZB_FILE_TYPES = [ 'xml' ]
    
    # Support extracting NZBsicon from ZIP files with this suffix (case insensitive) in
    # QUEUE_DIR. Defaults to '.nzb.zip'. Set to False to disable.
    #Hellanzb.NZB_ZIPS = '.nzb.zip'
    
    # Support extracting NZBs from GZIP files with this suffix (case insensitive)
    # in QUEUE_DIR. Defaults to '.nzb.gz'. Set to False to disable.
    #Hellanzb.NZB_GZIPS = '.nzb.gz'
    
    # Delay enqueueing new, recently modified NZB files added to the QUEUE_DIR until
    # this many seconds have passed since the NZB's last modification time (defaults
    # to 10 seconds)
    #Hellanzb.NZBQUEUE_MDELAY = 10
    
    # Optional external handler script. hellanzb will run this script after post
    # processing an archive, with the following arguments:
    #
    # handler_script type archiveName destDir elapsedTime parMessage
    #
    # type: post processing result, either 'SUCCESS' or 'ERROR'
    # archiveName: name of the archive, e.g. 'Usenet_Post5'
    # destDir: where the archive ended up, e.g. '/ext2/usenet/Usenet_Post5'
    # elapsedTime: a pretty string showing how long post processing took, e.g.
    #              '10m 37s'
    # parMessage: optional post processing message. e.g. '(No Pars)'
    #Hellanzb.EXTERNAL_HANDLER_SCRIPT = '~/bin/post_hellanzb.sh'
    Und localhost:8888 leitet über einen Server auf den Usenet-Server (und das geht wie gesagt, da ich, wenn ich dort mit 119 ohne SSL arbeite, alles läuft, nur eben bei 563 mit SSL Probleme).

    Sonst noch was, was Ihr braucht :) ?

  5. #5
    Administrator Avatar von Borbarad
    Registriert
    17.09.2007
    Beiträge
    1.517
    Blog-Einträge
    3

    Standard

    Hi,
    also ich weiß das der Ultraleecher unter Windows beim ersten connecten über SSLicon/563 bei XLNed einen Timeout verursacht, zumindest bei manchen Usern. Wenn dort aber der Reconnectwert auf z.B. 2 Sekunden eingestellt ist, klappt es dann (und läuft dann auch) und man merkt es auch nicht wirklich. Ohne SSL/119 tritt dieser Fehler nicht auf. Hört sich also ähnlich an.
    Allerdings hab ich von den Einstellungen beim Hellanzb nicht wirklich Ahnung. Wenn ich mir deine config anschau, könnte das evtl. antiidle sein. Aber mit "Sicherheit" kann ich da nichts zu sagen.


    Borbrad

  6. #6
    Joe
    Gast Avatar von Joe

    Standard

    Hallo,
    das ist aber was anderes, wenn ich mich nicht täusche - leider.

    Sonst noch Ideen?

  7. #7
    Administrator Avatar von Borbarad
    Registriert
    17.09.2007
    Beiträge
    1.517
    Blog-Einträge
    3

    Standard

    Hi,
    ich hab nur gelesen, das wenn die Funktion auf "off" gestellt ist, er einen "simple reconnect" durchführt. aber wie geschrieben, genaueres kann ich dazu auch nicht sagen. Vielleicht hat blackcrow da nachher eine bessere Idee.


    Borbarad

  8. #8
    Forum-Team Avatar von blackcrow
    Registriert
    08.10.2007
    Beiträge
    310

    Standard

    Ne sorry ich weiß es auch nicht, da SSLicon ja bei anderen Anbietern bei dir funktioniert....

  9. #9
    Joe
    Gast Avatar von Joe

    Standard

    Und was macht da XLned anders, als andere? Also, warum geht es bei dennen nicht?

    Gäbe es sonst noch Alternativen für Linux? Pan kann keine NZBicon Files, und klibido ist nicht mein Ding.

  10. #10
    UPeu User Avatar von L-tux
    Registriert
    30.11.2007
    Beiträge
    11

    Standard

    hi!
    wahrscheinlich machen die nichts anders, denn SSLicon funktioniert ja bei genügend anderen (zumindest mit nem anderen reader)! hab aber auch keine ahnung von hellanzb und warum das bei dir nicht geht.
    welche version von pan nutzt du? pan kann schon länger auch mit NZBsicon!
    alternativ: wine und z.b. mit alt.binz!
    Tux

Seite 1 von 2 12 LetzteLetzte

Ähnliche Themen

  1. Keine Verbindung mit SSL
    Von Jenny6 im Forum 4Usenet
    Antworten: 22
    Letzter Beitrag: 20.11.2008, 17:51
  2. Wie funktioniert der Download von Dateien aus dem Usenet?
    Von Borbarad im Forum Die Usenet-FAQ
    Antworten: 0
    Letzter Beitrag: 21.10.2008, 22:45
  3. Funktioniert Bei Euch SSL?
    Von Mr Magorium im Forum Gebruikhet
    Antworten: 8
    Letzter Beitrag: 16.04.2008, 15:39
  4. Bekomme Keine Verbindung Mehr
    Von Spiderman im Forum Eweka
    Antworten: 2
    Letzter Beitrag: 02.11.2007, 17:37

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •