search for: tructur

Displaying 3 results from an estimated 3 matches for "tructur".

Did you mean: structur
2015 Jan 22
1
Postfix Dovecot LDAP setup
...I'm trying to substitude my SQL based Postfix/Dovecot mail server by a LDAP based setup. Everything seems to go smooth so far - thanks to the many how to and Dovecot wiki. Unfortunately I'm struggeling, since I have to create individual a LDAP schema which suits the currently used LDAP structure. The current tructure looks like this: => dc=MyDomain,dc=TLD ==> ou=People ===> uid=User-1 ====> ou=mail ===> uid=User-2 ====> ou=mail ... and so on ... Within ou=mail should be the individual mail account(s) information of a user. So in the end I want to add a(nother) mail...
2015 Jan 22
0
Postfix Dovecot LDAP setup
...I'm trying to substitude my SQL based Postfix/Dovecot mail server by a LDAP based setup. Everything seems to go smooth so far - thanks to the many how to and Dovecot wiki. Unfortunately I'm struggeling, since I have to create individual a LDAP schema which suits the currently used LDAP structure. The current tructure looks like this: => dc=MyDomain,dc=TLD ==> ou=People ===> uid=User-1 ====> ou=mail ===> uid=User-2 ====> ou=mail ... and so on ... Within ou=mail should be the individual mail account(s) information of a user. So in the end I want to add a(nother) mail...
2006 Mar 27
0
Newbie stuff: Adding a New Library Class
Hi I have been successful in playing around with model, views and controllers in Rails. Along the way, I learnt that some of the reusable stuff could be made library classes. I want to create a lib which will render a form and form elements. I created a class Mylib.rb in /lib folder. The class tructure looks like this class Mylib helper FormTagHelper attr_accessor :name, :range, :name, :category, :sort, :page, :height, :width ... def initialize(name, options = {}) @name = name @range = options[:range] @category = options[:category] ... .....